/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/img/IMG_20250406_082507.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
body::-webkit-scrollbar{
    display: none;
}

/* Section Styling */
section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 3rem;
}

/* Login Box */
.login {
    background: #ffffff;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* Header Text */
.login h1 {
    font-size: 1.8em;
    color: #004d40;
    margin-bottom: 20px;
    line-height: 1.5;
}

.login em {
    color: #26a69a;
    font-style: normal;
    font-weight: bold;
}

/* Form Image */
.login img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Form Labels and Inputs */
form label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

form input:focus{
    outline: none;
    border: 1px solid #26a69a;
    box-shadow: 0 0 5px rgba(38, 166, 154, 0.5);
}

/* Forgot Password Link */
form span {
    display: block;
    text-align: left;
    font-size: 0.9em;
    margin-bottom: 15px;
}

form span a {
    color: #26a69a;
    text-decoration: none;
}

form span a:hover {
    text-decoration: underline;
}

/* Submit Button */
form button {
    width: 100%;
    padding: 10px 15px;
    background: #004d40;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #02675b;
}

/* Register Link */
.login p {
    margin-top: 15px;
    font-size: 0.9em;
    text-align: left;
}

.login p a {
    color: #004d40;
    text-decoration: none;
    font-weight: bold;
}

.login p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login {
        width: 90%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .login h1 {
        font-size: 1.5em;
    }

    form input {
        font-size: 0.9em;
    }

    form button {
        font-size: 0.9em;
    }
}
