.register-container {
    max-width: 420px;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.register-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

label {
    font-size: 14px;
    color: #444;
    display: block;
    margin-bottom: 5px;
}

input,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

input:focus,
select:focus {
    border-color: #007bff;
}

.toggle-password {
    position: absolute;
    left: 10px;
    top: 35px;
    cursor: pointer;
    font-size: 13px;
    color: #007bff;
}

.btn-primary {
    width: 100%;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.btn-primary:disabled {
    background: #aaa;
}

/* Modal */
.modal {
    display: block;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background: white;
    margin: 100px auto;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    text-align: center;
}

.countdown {
    font-size: 14px;
    margin-top: 10px;
    color: #555;
}

#errs {
    color: red;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    direction: ltr;
}

.otp-inputs input {
    width: 40px;
    height: 45px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    direction: ltr;
}
