﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

.custom-btn {
    padding: 15px 20px;
    background-color: #8C2AC4;
    border: 1px solid #8C2AC4;
    border-radius: 100px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

    .btn svg {
        width: 25px;
    }

    .custom-btn:hover {
        color: #fff;
        background-color: #7622a8;
    }

    .btn:focus {
        box-shadow: none;
    }

    .btn:active {
        transform: scale(0.99, 0.98);
    }

.btn-outline {
    border: 1px solid #E81ECD;
    background: #fff;
    color: #000;
}

    .btn-outline:hover {
        color: #000;
        background: #fff;
    }

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid #E81ECD;
    border-radius: 100px;
    background-color: #fff;
    color: #000;
    width: 100%;
}
    .google-btn img {
        width: 22px;
        height: 22px;
    }
    .google-btn span {
        font-weight: 500;
        font-size: 0.95rem;
    }
.main-wrapper-auth {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

    .main-wrapper-auth::after,
    .main-wrapper-auth::before {
        content: '';
        position: absolute;
        z-index: 5;
        min-width: 40px;
        width: 4%;
        height: 160px;
    }

    .main-wrapper-auth::after {
        background-color: #E81ECD;
        top: 0;
        right: 0;
        border-radius: 0 0 0px 25px;
    }

    .main-wrapper-auth::before {
        background-color: #8C2AC4;
        bottom: 0;
        left: 0;
        border-radius: 0 25px 0 0px;
    }

.login-section {
    width: 100%;
    min-height: 100vh;
    background: url(../img/login-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

    .login-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(226.12deg, rgba(18, 18, 18, 0) 43.13%, #121212 96.74%);
        z-index: 1;
    }

    .login-section .container {
        height: 100vh;
    }

.auth-row {
    position: relative;
    z-index: 10;
    align-items: stretch;
    height: 100%;
}

.auth-cover-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.auth-cover {
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 4rem 0;
}

    .auth-cover h2 {
        font-weight: 700;
        font-size: 2.4rem;
    }

        .auth-cover h2 b {
            font-weight: 700;
            color: #E81ECD;
        }

        .auth-cover h2 span {
            font-weight: 300;
        }

    .auth-cover p {
        font-size: 1.3rem;
    }

    .auth-cover .auth-cover-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
.auth-cover1 {
    display: flex;
    flex-direction: column;
    color: #000;
    padding: 4rem 0;
}

    .auth-cover1 h2 {
        font-weight: 700;
        font-size: 2.4rem;
    }

        .auth-cover1 h2 b {
            font-weight: 700;
            color: #E81ECD;
        }

        .auth-cover1 h2 span {
            font-weight: 300;
        }

    .auth-cover1 p {
        font-size: 1.3rem;
    }

    .auth-cover1 .auth-cover1-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

.glass-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #FFFFFF36;
    border: 1px solid #FFFFFF4A;
    backdrop-filter: blur(24.600000381469727px);
    border-radius: 100px;
    gap: 0.25rem;
}

    .glass-btn svg {
        fill: #37B99C;
        height: 20px;
    }

    .glass-btn span {
        font-size: 0.8rem;
        font-weight: 500;
        color: #fff;
    }

.auth-form-wrapper {
    height: 100vh;
    overflow-y: auto;
    display: block;
}

    .auth-form-wrapper::-webkit-scrollbar {
        display: none;
    }

.login-form {
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .login-form .form-logo {
        width: 40%;
    }

        .login-form .form-logo img {
            width: 100%;
        }

    .login-form .form-title {
        color: #000;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

        .login-form .form-title p {
            font-size: 0.9rem;
            margin: 0;
        }

            .login-form .form-title p span {
                color: #8C2AC4;
                font-weight: 700;
            }

        .login-form .form-title h6 {
            font-size: 2rem;
            font-weight: 700;
        }

    .login-form .form-inputs {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .login-form .form-inputs .input {
            display: flex;
            align-items: center;
            position: relative;
        }

            .login-form .form-inputs .input svg {
                width: 20px;
                height: 20px;
                stroke: #000;
                position: absolute;
                left: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            .login-form .form-inputs .input input {
                width: 100%;
                padding: 15px 20px 15px 50px;
                border-radius: 100px;
                border: 1px solid #E6E6E6;
                background-color: transparent;
                font-size: 0.9rem;
            }

                .login-form .form-inputs .input input::placeholder {
                    color: #000;
                }

    .login-form .forgot-password {
        display: flex;
        justify-content: end;
        width: 100%;
    }

        .login-form .forgot-password a {
            font-size: 0.9rem;
            font-weight: 500;
            color: #000;
        }

    .login-form .form-or {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000;
    }

        .login-form .form-or::after,
        .login-form .form-or::before {
            content: '';
            position: absolute;
            width: calc(50% - 20px);
            height: 1px;
            background-color: #E5E5E5;
            top: 50%;
            transform: translateY(-50%);
        }

        .login-form .form-or::after {
            left: 0;
        }

        .login-form .form-or::before {
            right: 0;
        }

        .login-form .form-or p {
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0;
        }

    .login-form .form-line {
        color: #000;
    }

        .login-form .form-line p {
            font-size: 0.75rem;
        }

            .login-form .form-line p a {
                font-weight: 700;
                color: #0DA0E6;
            }
