html, body{
    margin: 0;
    height: 100%;
    font-family: "Poppins", sans-serif;
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 400;
}

.login-fluid{
    display: grid;
    min-height: 100%;
    width: 100%;
    grid-template-columns: 70% 30%;
}

.login-intro-container{
    position: relative;
    overflow: hidden;
}

.login-intro-container video{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-intro-over{
    position: relative;
    width: 100%;
    height: 100%;
    background: rgb(73 23 109 / 60%);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.login-intro-box{
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    width: 400px;
    border: 5px solid rgba(255,255,255,0.5);
    transition: all 0.25s ease;
}

.login-intro-over:hover{
    background: rgb(73 23 109 / 90%);
}

.login-intro-over:hover .login-intro-box{
    transform: scale(1.05);
} 

.login-intro-msg{
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3em;
    color: #000;
    margin: 40px 0;
}

.login-intro-button{
    width: max-content;
    font-size: 18px;
    color: #f53f7b;
    cursor: pointer;
    display: flex;
    gap: 6px;
    align-items: center;
    text-decoration: none;
}

.login-intro-button i{
    transition: all 0.2s ease;
    transform: rotate(45deg);
}

.login-intro-button:hover i{
    transform: rotate(0deg);
}

.login-form-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-box{
    padding: 20px;
    width: 100%;
    max-width: 360px;
}

.login-box-title{
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
}

.login-input-holder{
    margin-top: 15px;
}

.login-label{
    font-size: 13px;
    color: #000;
    font-weight: 500;
    margin-bottom: 3px;
    display: block;
    margin-left: 2px;
}

.login-input-wrap{
    width: 100%;
}

.login-input{
    width: 100%;
    height: 40px;
    padding: 0 12px;
    box-sizing: border-box;
    background: none;
    border: 1px solid #e8e9eb;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s ease;
}

.login-input::placeholder{
    color: #b9c7cd;
}

.login-input:focus{
    outline: none;
    border: 1px solid #414d55;
}

.login-input-fp{
    font-size: 13px;
    color: #4285F4;
    margin-top: 2px;
    margin-left: 3px;
    cursor: pointer;
    text-align: right;
}

.login-input-fp:hover{
    text-decoration: underline;
}

.login-button{
    margin-top: 15px;
    height: 40px;
    width: 100%;
    background: #49176d;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.login-button-inactive{
    cursor: not-allowed;
    background: #a085b3;
}

.login-box-separator{
    position: relative;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box-separator span{
    padding: 3px 10px;
    background: #fff;
    color: #606771;
    position: relative;
    font-size: 13px;
}

.login-box-separator:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #e2e3e4;
}

.login-social-grid{
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.social-login-btn{
    height: 40px;
    display: flex;
    gap: 10px;
    background: #f1f5f8;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

.social-login-btn img{
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.login-error-wrap{
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
    color: #606771;
    display: none;
}

/** Dashboard Start **/

.topbar-fluid{
    display: flex;
    padding: 0 28px 0 20px;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    background: #f1f5f8;
    border-bottom: 1px solid #eaeaea;
}

.topbar-left-container{
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-logo{
    width: 50px;
    height: 50px;
    border-right: 1px solid #dfe5ed;
    padding-right: 10px;
    margin-right: 10px;
}

.topbar-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.topbar-menu-item{
    font-size: 14px;
    padding: 5px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.topbar-menu-item:hover{
    background: #2a2a2a;
    color: #fff;
}

.topbar-menu-active, .topbar-menu-active:hover{
    background: #666cff;
    color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.topbar-right-container{
    display: flex;
    align-items: center;
}

.topbar-user-item{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.topbar-user-avatar{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5e6aab;
    border-radius: 30px;
    color: #fff;
    font-weight: 400;
}

.user-dropdown-open{
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.topbar-user-dropdown{
    position: absolute;
    background: #fff;
    width: 200px;
    right: 0;
    top: calc(100% + 15px);
    border: 1px solid #e9e9e9;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    padding-top: 5px;
    border-radius: 5px;
    overflow: hidden;
    display: none;
}

.user-dropdown-item{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-dropdown-item i{
    font-size: 1.24em;
}

.user-logout-button{
    background: #fa7f75;
    padding: 10px;
    text-align: center;
    color: #fff;
    margin-top: 5px;
    transition: all 0.2s ease;
}

.user-logout-button:hover{
    background: #f44336;
}

.user-dropdown-item:hover{
    background: #f1f5f8;
}

.dashboard-fluid{
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-section-container{
    margin-top: 30px;
}

.dashboard-section-header{
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9e9e9;
}

.dashboard-section-title{
    font-size: 20px;
    font-weight: 600;
}

.section-header-right{
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-search-wrap{
    background: #f1f5f8;
    display: flex;
    align-items: center;
    padding-right: 8px;
    border-radius: 34px;
    border: 1px solid #e9e9e9;
    box-sizing: border-box;
}

.header-search-input{
    height: 34px;
    padding: 0 10px;
    box-sizing: border-box;
    background: none;
    border: none;
}

.header-search-input:focus{
    outline: none;
}

.section-header-button{
    display: flex;
    align-items: center;
    gap: 6px;
    background: #4285F4;
    border: none;
    height: 34px;
    padding: 0 16px 0 12px;
    border-radius: 34px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.section-header-button i{
    font-size: 1.1rem;
}

.section-header-button:hover{
    background: #3367D6;
}

.dashboard-section-empty{
    padding: 50px 20px;
    text-align: center;
    background: rgb(245 243 247);
    margin-top: 15px;
    color: #606771;
    font-size: 14px;
}

.section-empty-message{
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-top: 10px;
}

.popup-fluid{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    overflow-x: hidden;
    display: none;
}

.popup-container{
    background: #fff;
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
    display: none;
}

.popup-header{
    display: flex;
    font-size: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #e9e9e9;
}

.popup-body{
    padding: 15px;
}

.popup-input-holder{
    margin-bottom: 25px;
}

.popup-label{
    font-size: 13px;
    font-weight: 500;
    color: #414d55;
}

.popup-input-wrap{
    background: #f1f5f8;
    border-radius: 4px;
    border: 1px solid #e9e9e9;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}

.popup-input-focus{
    border: 1px solid #414d55;
}

.popup-input{
    height: 40px;
    background: none;
    border: none;
    padding: 0 12px;
    flex: 1;
    font-size: 14px;
    font-family: inherit;
    color: #2a2a2a;
}

.popup-input::placeholder{
    color: #b9c7cd;
}

.popup-input:focus{
    outline: none;
}

.popup-input-error{
    border: 1px solid #f44336;
}

.url-input-domain{
    font-size: 14px;
    font-weight: 500;
}

.input-icon{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon-error{
    color: #f44336;
}

.input-icon-success{
    color: #009688;
}

.popup-input-note{
    font-size: 12px;
    margin-top: 4px;
    color: #606771;
}

.close-popup{
    cursor: pointer;
}

.popup-select-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.select-grid-item{
    height: 150px;
    background: #f1f5f8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #606771;
    cursor: pointer;
    transition: all 0.25s ease;
}

.select-grid-item:hover{
    background: #2a2a2a;
    color: #fff;
}

.grid-item-selected, .grid-item-selected:hover{
    background: linear-gradient(45deg, #3367D6, #4285F4);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.grid-item-browse{
    background: #f1f5f8;
    color: #4285f4;
}

.grid-item-browse:hover{
    background: #f1f5f8;
    color: #4285f4;
    text-decoration: underline;
}

.popup-submit-holder{
    margin-top: 35px;
    margin-bottom: 10px;
}

.popup-submit-container{
    display: flex;
    gap: 15px;
    align-items: center;
}

.popup-submit-button{
    height: 46px;
    background: #49176d;
    border: none;
    font-size: 15px;
    color: #fff;
    width: 240px;
    border-radius: 4px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.submit-button-loading{
    cursor: not-allowed;
    background: #a085b3;
}

.popup-form-cancel{
    font-size: 14px;
    color: #606771;
    cursor: pointer;
    transition: all 0.25s ease;
}

.popup-form-cancel:hover{
    color: #2a2a2a;
}

.popup-error-wrap{
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #bf473e;
    display: none;
}

/** Dashboard End **/