body {
    font-family: Arial, sans-serif;
    background-image: url('background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #003300;
    margin: 0;
    height: 85vh;
    padding: 0;
}

.form-container {
    max-width: 400px;
    width: 90%;
    margin: 80px auto;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

form input,
form button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    box-sizing: border-box;
    outline: none;
}

form input {
    border: 1px solid #ccc;
}

form button {
    background: #0a6b0a;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: ##0a6b0a;
}

.popup.error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    margin-bottom: 15px;
    border-left: 5px solid #f5c6cb;
    border-radius: 5px;
    box-sizing: border-box;
}

.donthaveaccount {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #003300;
}

.donthaveaccount a {
    color: #0a6b0a;
    text-decoration: none;
    font-weight: bold;
}
