/* POPPINS FONT */
@font-face {
    font-family: 'Poppins';
    font-weight: 300;
    src: url('../lib/fonts/poppins-regular-webfont.woff2') format('woff2');
    src: url('../lib/fonts/poppins-regular-webfont.woff') format('woff');
}

:root {
    /* Tamaños de fuente */
    --font-forms: 0.75rem;
    --font-family: 'Poppins', sans-serif;
    --room-green: #2a485f;
    --text-gray: #6c757d;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-forms);
    font-weight: 300;
    overflow-x: hidden;
    overflow-y: hidden;
}

.main {
    background-image: url('../img/background5.jpg');
    background-size: cover;
    background-position: right;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    height: 100svh;
    scrollbar-gutter: 0;
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    min-width: 250px;
    max-width: 550px;
}

.toast {
    top: 50px;
    right: 15px;
    z-index: 9999;
}

/*
.split-container {
    display: flex;
    height: 100vh;
}
.image-side {
    flex: 0 0 50%;
    background-image: url('../img/background5.jpg');
    background-size: cover;
    background-position: right;
    position: relative;
}

.brand-watermark {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.form-side {
    flex: 0 0 50%;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
}

.register-card {
    background: white;
    padding: 40px 50px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 480px;
}
*/

/*
.register-card h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-control {
    border-radius: 0;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    font-size: 14px;
}
*/

/*
.form-text {
    font-size: 12px;
    margin-bottom: 20px;
    color: var(--text-gray);
}
*/

/* Password Wrapper for Eye Icon */
.password-wrapper {
    position: relative;
    /* margin-bottom: 12px; */
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-gray);
    z-index: 10;
}

/* Strength Meter */
.strength-container {
    margin-bottom: 15px;
    margin-top: 5px;
}

.strength-meter {
    height: 4px;
    background-color: #e9ecef;
    width: 100%;
    margin-bottom: 5px;
}

#strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.4s ease;
}

#strength-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

/* Match Indicator */
#match-text {
    font-size: 11px;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.btn-room-reg {
    background-color: var(--room-green);
    color: white;
    border: none;
    /* border-radius: 0; */
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    font-size: 14px;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-room-reg:disabled {
    background-color: #2a485f6f;
    cursor: not-allowed;
    opacity: 0.7;
}

.back-to-link {
    color: white;
    text-align: center;
    font-size: 13px;
    margin-top: 20px;
}

.back-to-login a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 992px) {
    /*
    .split-container {
        flex-direction: column;
        overflow-y: auto;
    }

    .image-side {
        flex: 0 0 30vh;
        width: 100%;
    }
    */

    .form-side {
        flex: 1;
        width: 100%;
        padding: 40px 20px;
    }

    .card {
        width: 350px;
    }
}