﻿.login-container {
    min-height: calc(100vh - 57px);
}

.login-form-section {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.login-form {
    width: 100%;
    max-width: 28rem;
}

.login-form h1 {
    margin-bottom: 0.5rem;
    color: #212529; /* text-foreground */
}

.login-form p {
    color: #6c757d; /* text-muted-foreground */
    margin-bottom: 2rem;
}

.divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #dee2e6; /* border color */
    transform: translateY(-50%);
}

.divider span {
    background-color: white;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    color: #6c757d;
    font-size: 0.9rem;
}

.dividerRegister {
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

.dividerRegister::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #dee2e6; /* border color */
    transform: translateY(-50%);
}

.dividerRegister span {
    background-color: white;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    color: #6c757d;
    font-size: 0.9rem;
}

.social-button {
    border:1px solid lightgray;
}

.social-button:hover{
    background-color:var(--bs-light);
    border:1px solid lightgray;
}

.social-button svg {
    width: 20px;
    height: 20px;
}

/* Right panel */
.info-panel {
    flex: 1 1 50%;
    display: none;
    /*background: linear-gradient(135deg, #21b1a4, #009689);*/
    background: linear-gradient(135deg, #021614, #333434);
    color: #fff;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    position: relative;
    text-align: center;
}

.info-panel .circle {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    filter: blur(100px);
}

.info-panel .circle.top-right {
    top: -6rem;
    right: -6rem;
}

.info-panel .circle.bottom-left {
    bottom: -8rem;
    left: -8rem;
}

.info-panel h2 {
    margin-bottom: 1rem;
}

.info-panel p {
    max-width: 80%;
    margin: 0 auto 2rem;
    opacity: 0.8;
}

.info-panel .features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.changeBtn {
    top: 15%;
    width: 15%;
    border-radius: 50px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3) !important
}

.btn-group .btn {
    color: black;
    transition: all 0.3s ease;
}

.btn-group .active-tab {
    color: white !important;
    background-color: black !important;
    border-radius: 20px;
}

.loginBtn:focus {
    box-shadow: none !important;
    border: 0 !important;
    outline: none !important
}

.registerBtn:focus {
    box-shadow: none !important;
    border: 0 !important;
    outline: none !important;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.divSize {
    width: 50%;
}

input:focus{
    box-shadow:none!important;
    outline:none!important;
    border:1px solid lightgray!important
}

.forgotPassw {
    font-size: 15px;
    color: #545151
}

.iconStyle {
    width: 35px;
    height: 35px;
    background: #46464691;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center
}

@media(min-width: 992px) {
    .info-panel {
        display: flex;
    }
}
