.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background-color: #1e293b;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}
.close {
    color: #E5E7EB;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover {
    color: #22C55E;
}
.modal-content h2 {
    color: #E5E7EB;
    text-align: center;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    color: #94a3b8;
    margin-bottom: 5px;
}
.form-group input {
    width: 100%;
    padding: 10px;
    background: #0f172a;
    color: #E5E7EB;
    border: 1px solid #1e293b;
    border-radius: 5px;
}
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
    background: #0f172a !important;
    -webkit-box-shadow: 0 0 0 1000px #0f172a inset !important;
    -webkit-text-fill-color: #E5E7EB !important;
    border: 1px solid #1e293b !important;
    border-radius: 5px !important;
}
.modal-content button {
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 2.5rem;
    height: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.5rem;
    background-color: #22C55E;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.15s, color 0.15s;
}
.modal-content button:hover {
    background-color: #16A34A;
}