/* Login Box Styling */

body {

    background: linear-gradient(315deg, #E4F1EE 3%, #E5E4F0 38%, #DBEBEB 68%, #E5ECF1 98%);
    animation: gradient 30s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: 300px; */
    width: 35%;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 100px auto;
}

.loginimg {
    width: 25%;
    margin-bottom: 20px;
}



/* Heading */
.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
    font-family: "Karla", sans-serif;
}

/* Input Fields */
.textbox {
    position: relative;
    margin-bottom: 20px;
}

.textbox input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
   font-family: "Karla", sans-serif;
}

.textbox input:focus {
    border-color: #444444;
    outline: none;
}

/* Show Password functionality */
.show-password-icon {
    position: absolute;
    top: 12px;
    right: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #007bff;
    font-family: "Karla", sans-serif;
}

/* Forgot Password Link */
.forgot-password {
    text-align: right;
}

.forgot-password a {
    color: #007bff;
    text-decoration: none;
    font-family: Karla, sans-serif;
    font-size: 16px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Line Separator */
.line {
    margin: 20px 0;
    border-top: 1px solid #ddd;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 10px;
    background-color: #444444;
    border: none;
    color: white;
    border-radius: 23px;
    font-size: 16px;
    cursor: pointer;
    font-family: "Karla", sans-serif;
}

.login-btn:hover {
    background-color: rgb(0, 5, 10);
}

/* Google Login Button */
.google-login .google-btn {
    width: 100%;
    padding: 10px;
    background-color: #db4437;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    cursor: pointer;
    margin-top: 10px;
    font-family: "Karla", sans-serif;
}

.google-login .google-btn:hover {
    background-color: #c1351d;
}

/* Signup Link */
.signup {
    text-align: center;
    font-size: 14px;
   font-family: "Karla", sans-serif;
    margin-top: 20px;
}

.signup a {
    color: #007bff;
    text-decoration: none;
   font-family: "Karla", sans-serif;
}

.signup a:hover {
    text-decoration: underline;
}