/* Login e Frontpage*/

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Exo 2', sans-serif;
}

.desktop-view {
    display: flex;
    height: 100vh;
    background-image: url('/img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-content {
    color: white;
    max-width: 400px;
    margin: auto 125px;
    padding-left: 50px;
}

/* Custom styles for rectangle indicators */
.slider-indicators {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-top: 20px;
}

.slider-indicators span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #cfcbcb;
    cursor: pointer;
}

.slider-indicators .active {
    background-color: #ffffff;
    height: 5px;
    width: 45px;
    margin-top: -1px;
}

/* Desktop-specific styles */
@media (min-width: 769px) {
    .form-container {
        position: relative;
        background: rgba(255, 255, 255, 1);
        padding: 20px;
        /* Reduz o padding geral */
        display: flex;
        align-items: flex-start;
        /* Alinha o conteúdo ao topo */
        justify-content: center;
        max-width: 29%;
        margin-left: auto;
        margin-right: 230px;
        margin-top: 5%;
        /* Reduz o espaçamento superior */
        border-radius: 20px 20px 0 0;
        transition: all 0.5s ease-in-out;
    }
}

.signup-inner {
    width: 100%;
    max-width: 449px;
    margin-top: -10%;
}

.subtitle {
    font-family: 'Anek Devanagari', sans-serif;
    font-weight: 700;
}

/* Fixed label input styles with overlap */
.form-floating-label {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-floating-label input {
    border-radius: 12px;
    padding: 20px 15px 10px;
    font-size: 16px;
    border: 1px solid #ced4da;
    outline: none;
    width: 100%;
    height: 55px;
    transition: border-color 0.3s ease;
}
.form-floating-label select {
    border-radius: 12px;
    padding: 20px 15px 10px;
    font-size: 16px;
    border: 1px solid #ced4da;
    outline: none;
    width: 100%;
    height: 55px;
    transition: border-color 0.3s ease;
}

.form-floating-label label {
    position: absolute;
    top: -12px;
    left: 15px;
    font-size: 16px;
    color: #6c757d;
    background: white;
    padding: 0 5px;
    transform: translateY(-50%);
    pointer-events: none;
}

.label-overlaping {
    margin-top: 10px;
}

.form-floating-label input:focus {
    border-color: #495057;
}

.form-floating-label input:not(:focus) {
    border-color: #ced4da;
}

/* Align icons to the left within buttons */
.btn i {
    margin-right: 25px;
    margin-left: 20px;
}

.btn-outline-custom-secondary {
    --bs-btn-color: #6c757d;
    --bs-btn-border-color: #dee2e6;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #dee2e6;
    --bs-btn-hover-border-color: #dee2e6;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #dee2e6;
    --bs-btn-active-border-color: #dee2e6;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #dee2e6;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #dee2e6;
    --bs-gradient: none;
    text-align: left;
    padding-left: 20px;
}

/* Separator with "Ou" */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.separator hr {
    flex: 1;
    border: none;
    border-top: 1px solid #ced4da;
    margin: 0;
}

.separator span {
    padding: 0 10px;
    color: #6c757d;
    font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
        padding: 10px;
        /*background-color: #f8f9fa;*/
        /*Evita sombreamento desnecessário*/
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .signup-container {
        padding: 20px;
        background-color: #ffffff;
        border-radius: 10px;
        width: 100%;
        margin: 0;
    }

    /* Mobile form container transitions */
    .form-container-mobile {
        position: relative;
        transition: opacity 0.5s ease-in-out;
    }

    .form-container-mobile.fade-out {
        opacity: 0;
        pointer-events: none;
    }

    .form-container-mobile.fade-in {
        opacity: 1;
    }
}

.btn-green {
    background-color: #d9fead;
    --bs-btn-hover-bg: #afd988;
    --bs-btn-hover-color: #fff;
    padding-top: 3%;
    padding-bottom: 3%;
    font-weight: 500;
    color: #000;
}

.zoom {
    transition: transform 0.3s ease;
}

.zoom:hover {
    transform: scale(1.02);
}

.logo {
    margin-left: -82px;
    margin-top: -56px;
}

.img-space {
    height: 400px;
}

.fa-facebook {
    color: #039be5;
}

.fa-apple {
    color: #000;
}

.fa-google {
    color: #ff6304;
}

.blue {
    color: #2f56cb;
}

/* Slides */

.slider-content {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 400px;
    margin: auto -126px;
    padding-left: 50px;
    margin-left: auto;
    /* margin: auto 125px;
    padding-left: 50px;*/
}

.slide {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slider-indicators {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-top: 55px;
    margin-left: -47px;
}

.slider-indicators span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #cfcbcb;
    cursor: pointer;
}

.slider-indicators .active {
    background-color: #ffffff;
    height: 5px;
    width: 45px;

}

.slide-content {
    opacity: 1;
    transform: none;
}

.slide-content img,
.slide-content h2,
.slide-content p {
    opacity: 1;
    transform: none;
}

@media (min-width: 768px) {
    .desktop-view {
        display: flex;
        height: 100vh;
    }
}

.form-container {
    background: rgba(255, 255, 255, 1);
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    margin-left: auto;
    margin-right: 230px;
    margin-top: 30px;
    border-radius: 20px 20px 0 0;
    transition: all 0.5s ease-in-out;
}

.mobile-view {
    display: none;
}

@media (max-width: 768px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }
}

.login-with-google-btn {
    padding: 10px 22px 10px 19px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-position: 0px 11px;
    overflow: hidden;
    margin-left: -15px;
}

.fa-apple {
    font-size: 20px;
}

.fa-facebook {
    font-size: 20px;
}