/* styles.css */
body {
    margin: 20px;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    background: url('westback.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.login-container {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
}
.login-form h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.login-form p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #66cc66;
    box-shadow: 0 0 8px rgba(102, 204, 102, 0.4);
}

.form-actions {
    margin-top: 20px;
}

.form-actions .btn {
    background-color: #66cc66;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: 100%;
}

.form-actions .btn:hover {
    background-color: #55bb55;
}

.forgot-link {
    display: block;
    margin-top: 10px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}
