/* Background Gradient */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #FF8C00, #32CD32);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Login Box */
.login-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
}

/* Logo */
.logo img {
    width: 80px;
    margin-bottom: 10px;
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 25px;
    margin: 10px 0;
    padding: 10px;
}

.input-group i {
    margin-left: 10px;
    color: #888;
}

.input-group input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    padding: 10px;
}

/* Remember Me & Forgot Password */
.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
}

.remember-forgot a {
    color: #FF8C00;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    width: 100%;
    background: #FF8C00;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
}

.login-btn:hover {
    background: #E07C00;
}

/* Register Link */
.register-link {
    margin-top: 10px;
    font-size: 14px;
}

.register-link a {
    color: #32CD32;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Error Message */
.error {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}
