* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cabin", sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    color: #f5f5f5;
    overflow-x: hidden;
    overflow-y: auto;
    background: #000;
}

.mainBgContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: 30vw;
    max-width: 500px;
    max-height: 500px;
    background: linear-gradient(147.15deg, #434343 0.86%, #040404 41.84%);
}

.mainLoginContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 2rem 0;
}

.sliderSection {
    width: 50%;
}

.logo {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: .5rem;
    z-index: 2;
}

.logo-icon {
    width: 60px;
    height: 60px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
    transform: rotate(0deg);
    }
    to {
    transform: rotate(360deg);
    }
}

.myLoginSwiper {
    height: 100%;
    width: 600px;
    position: relative;
}

.myLoginSwiper .swiper-slide {
    width: 100%;
    transform: scale(.8) !important;
}

.myLoginSwiper .swiper-slide.swiper-slide-active {
    transform: scale(1) !important;
}

.myLoginSwiper .swiper-slide img {
    width: 100%;
}

.myLoginSwiper .swiper-pagination {
    position: relative;
    margin: 2rem 0;
}

.myLoginSwiper .swiper-pagination .swiper-pagination-bullet {
    background-color: #D9D9D9;
    border-radius: .5rem;
    width: 1.2rem;
    height: .35rem;
    transition: width .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.myLoginSwiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #D9D9D9;
    width: 2rem;
    transition: width .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.myLoginSwiper::before {
    content: '';
    background: linear-gradient(90deg, #040404 0%, rgba(4, 4, 4, 0) 100%);
    height: 100%;
    width: 3rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.myLoginSwiper::after {
    content: '';
    background: linear-gradient(270deg, #040404 0%, rgba(4, 4, 4, 0) 100%);
    height: 100%;
    width: 3rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.container {
    display: block;
    align-content: center;
    padding: 40px;
    border-radius: 12px;
    min-width: 425px;
    max-width: 500px;
    width: 100%;
}

.loginHeader {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.loginFormLabel {
    display: block;
    margin: 1.2rem 0 .5rem;
    font-size: 14px;
    font-weight: 400;
    color: #bcbcbc;
}

.loginFormInput {
    width: 100%;
    padding: 12px;
    border: 1px solid #373738;
    border-radius: 6px;
    background: #141414;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: 0.3s;
}

.loginFormInput:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.forgot {
    text-align: right;
    margin-top: 6px;
}

.forgot a {
    color: #2CCBDB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.btn {
    width: 100%;
    margin-top: 2rem;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    background: linear-gradient(70.46deg, #2CCBDB 19.22%, #1DD8C1 81.34%);
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

::placeholder {
    color: #9C9C9C99;
}

.error-message {
    color: red;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.input-error {
    border: 1px solid red !important;
}