* {
    box-sizing: border-box;
    font-family: Tahoma, Arial, sans-serif;
}

.col {display: inline-grid;margin: 5px 18px;text-align: right;vertical-align: top;}
.col a {color: #2b6eee;text-decoration: none;margin: 4px 0;}
main {display: flex;justify-content: center;align-items: center;padding: 12px 0;}
.card {background: white;padding: 2rem;border-radius: 12px;box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);border-top: 2px solid #5cff6a;}
.card-w {max-width: 720px;}

.marg {margin: 15px 0px 15px 0;}

.welcome-message h1 {margin: 0;font-size: 1.2rem;color: #587aff;}

.welcome-message p {color: #555;font-size: 1rem;margin-top: 0.5rem;font-weight: 500;}

.btn {background-color: #2b6eee;color: white;border: none;padding: 10px 20px;font-size: 1rem;border-radius: 20px;cursor: pointer;position: relative;overflow: hidden;transition: background 0.3s;}

.success {background-color: #2b6eee;}

.btn:hover {background-color: #074583;}

.form-section {display: none;text-align: right;}

.form-section.active {display: block;}

.input-field {margin-bottom: 1.5rem;position: relative;}

.input-field input {width: 100%;border: none;border-bottom: 2px solid #00ff14;padding: 10px 5px;font-size: 1rem;background: transparent;outline: none;transition: border-color 0.3s;}

.input-field input:focus {border-bottom-color: #1976d2;}

.input-field label {position: absolute;right: 5px;top: 10px;color: #777;font-size: 0.9rem;pointer-events: none;transition: 0.2s;}

.input-field input:focus+label,
.input-field input:not(:placeholder-shown)+label {
    top: -14px;
    font-size: 0.75rem;
    color: #1976d2;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background-color: rgba(255, 255, 255, 0.7);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


.form_left {
    width: 50%;
    float: left;
    padding-right: 3px;
}

.form_right {
    width: 50%;
    float: right;
    padding-left: 3px;
}

.select-field {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    /* flex-wrap: wrap; */
    justify-content: space-between;
}

.custom-select {
    position: relative;
    width: 350px;
    margin-bottom: 14px;
    font-family: Arial, sans-serif;
}

.select-input {
    border: none;
    border-bottom: 2px solid #00ff14;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s;
}

.select-input:hover {
    border-color: #3700b3;
}

.arrow {
    font-size: 14px;
    color: #6200ea;
}

.select-options {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    padding: 5px;
}

.select-options li {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.select-options li:hover {
    background: #f1f1f1;
}

.custom-select.drop-up .select-options {
    top: auto;
    bottom: 100%;
}

.recovery {
    cursor: pointer;
    padding: 12px 0;
    color: red;
    font-weight: bold;
}

.btn-wt {
    width: 100%;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 15px;
    display: none;
}
.grecaptcha-badge {
    display: none !important;
}