@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Rajdhani", sans-serif;
    background-image: -webkit-linear-gradient(45deg, hsl(45, 99%, 61%), hsl(225, 99%, 61%));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Ensure video stays behind the content */
    object-fit: cover;
    /* Ensure video fills the container */
}
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 450px;
    text-align: center;
    color: #fff;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 20px;
}

.input-field {
    margin-bottom: 15px;
    text-align: left;
}

.input-field label {
    display: block;
    margin-bottom: 5px;
}

.input-field input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.options a {
    color: #999;
    text-decoration: none;
}

.options input {
    margin-right: 5px;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background-image: -webkit-linear-gradient(45deg, hsl(11, 92%, 31%), hsl(225, 99%, 61%));
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    cursor: pointer;

}

footer p {
    margin-top: 20px;
    font-size: 12px;
}

footer span {
    color: #00ff88;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    outline: none;
}
.text-content {
    margin: 20px;
}
.text-content a {
    background-image: -webkit-linear-gradient(45deg, hsl(45, 99%, 61%), hsl(225, 99%, 61%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    margin: 20px;
    text-decoration: none;
}

.login-box-msg {
    background-image: -webkit-linear-gradient(45deg, hsl(45, 11%, 61%), hsl(000, 112%, 61%));
    height: 30px;
    line-height: 30px;
}

footer p {
    font-size: 18px;
}

footer a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background-image: -webkit-linear-gradient(45deg, hsl(45, 11%, 61%), hsl(000, 112%, 61%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}