body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.back-arrow {
    position: absolute;
    top: 20px;
    left: 20px;
}

.back-arrow img {
    width: 30px;
    cursor: pointer;
}

.logo img {
    width: auto; 
    max-width: 70px; 
    height: auto; 
    position: absolute;
    top: 20px; 
    right: 20px; 
}


.form-container {
    width: 40%; 
    margin: 80px auto 0; 
    padding: 50px 30px 30px; 
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);

}

.form-container h1 {
    margin-bottom: 30px;
    color: #8bc63e;
    font-size: 32px;
    text-align: center;
    font-family: 'Righteous', sans-serif;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #ffffff; 
}
.form-group input,
.form-group input[type="date"] {
    width: 100%;
    padding: 14px;
    background-color: white; 
    border: 1px solid #ccc; 
    border-radius: 5px;
    color: #000000; 
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out; 
}

.form-group select {
    width: 100%;
    padding: 14px;
    background-color: black; 
    border: 1px solid #ccc; 
    border-radius: 5px;
    color: white; 
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.form-group input:focus,
.form-group select:focus,
.form-group input[type="date"]:focus {
    border-color: #8bc63e; 
    box-shadow: 0 0 8px rgba(139, 198, 62, 0.6); 
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px; 
    background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 8 8%22%3E%3Cpath d=%22M0 2l4 4 4-4z%22 fill=%22#333%22/%3E%3C/svg%3E') no-repeat right 10px center;
    background-size: 12px;
}

button {
    width: 100%;
    padding: 14px;
    background-color:  #8bc63e;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease-in-out;
}

button:hover {
    background-color:  #7fa832; 
    transform: scale(1.05); 
}


.form-group, 
.form-group-row {
    margin-bottom: 30px;
}


@media (min-width: 1024px) {
    body {
        justify-content: center;
        align-items: center;
    }

    .form-container {
        max-width: 600px;
    }
}
.password-container {
    position: relative;
    width: 100%;
}

.password-container input {
    width: 100%;
    padding: 14px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #000000;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    color: #8bc63e; 
}

.eye-icon:hover {
    color: #7fa832;
}
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
    }
    .modal-content {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        text-align: center;
    }