/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafc;
}

a {
    text-decoration: none;
    color: #0078ff;
}

a:hover {
    text-decoration: underline;
}

/* Header/Home Button */
.home {
    margin: 10px;
    text-align: left;
}

.home a {
    font-size: 16px;
    color: #333;
}

/* Form Container */
.l {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.l h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Input Fields */
label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: calc(100% - 30px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Eye Icon Alignment */
.eye-icon,
.gh,
.g {
    position: absolute;
    margin-left: -30px;
    margin-top: 12px;
    cursor: pointer;
    font-size: 16px;
}

/* Password Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Buttons */
button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #0078ff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #005ecb;
}

/* Links */
.p,
.pp {
    text-align: center;
    margin-top: 15px;
}

/* Forgot Password Section */
.hello {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}

/* Timer */
.timer {
    text-align: center;
    margin: 10px 0;
    font-size: 14px;
    color: #888;
}

/* Validation Text */
.validation-text {
    font-size: 12px;
    color: red;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .l,
    .hello {
        padding: 15px;
        margin: 20px 10px;
    }

    .l h1 {
        font-size: 20px;
    }

    input[type="email"],
    input[type="password"],
    input[type="text"] {
        font-size: 12px;
    }

    button {
        font-size: 12px;
    }

    .eye-icon,
    .gh,
    .g {
        margin-left: -25px;
        font-size: 14px;
    }

    .home a {
        font-size: 14px;
    }
}
