.success-form {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 550px;
    color: white;
    text-align: center;
    margin: auto; 
}

.register-form h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #fff;
}

.input-group {
    position: relative;
    margin: 10px 0; 
}

.input-group input {
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
    height: 45px !important;
}

.input-group input:focus {
    outline: none;
}

.error-message {
    color: red;
    margin-top: -10px;
    text-align: left;
    display: block;
    font-size: 14px;
}

.login-link {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #bbb;
}

.login-link a {
    color: white;
    text-decoration: none;
}

.login-link a:hover {
    color: #005bb5;
}

button.btn {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    background-color: #006fc4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.btn:hover {
    background-color: #005bb5;
}
.return-btn{
    background-color: white;
    color: #00213a;
    text-decoration: none;
    padding: 5px 10px;
} 

.register-form {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    width: 100%;
    max-width: 600px;
    color: white;
    margin: auto;
    text-align: center;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
    box-sizing: border-box;
}

input[type="radio"] {
    width: auto;
    margin-right: 10px;
}

textarea {
    height: 150px;
    resize: none;
}

button.btn {
    background-color: #006fc4;
    color: white;
    padding: 12px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.btn:hover {
    background-color: #005bb5;
}

.btn-wrapper {
    display: flex;
    gap: 15px;
}
.form-label {
    font-weight: bold;
    font-size: 14px;
    float: left;
    margin: 5px 2px;
    text-align: left;
    line-height: 20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #000;
}
.close-btn:hover {
    color: red;
}

@media (max-width: 768px) {
    .register-form {
        width: 280px;
        margin: 0px 10px;
    }
    .input-group {
        position: relative;
        margin: 5px 0;
    }
}

