@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

.public-sans-extra-lite {
    font-family: "Public Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    background-color: black;
    color: white;
    font-family: 'Public Sans', sans-serif;
    font-weight: 100;
    width: 100%;
    overflow-x: hidden; 
    overflow-y: auto;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.preloader img {
    width: 150px;
    animation: shake 0.5s infinite alternate;
}

@keyframes shake {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}
.loading-text {
    margin-top: 20px;
    font-size: 1.2rem;
}
.container {
    display: none;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.logo-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #161616;
}

.logo-container img {
    width: 250px;
}

.login-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    background-color: #00000000;
    /* padding: 40px; */
    border-radius: 10px;
}

.login-container-inside {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    /* background-color: #121212; */
    /* padding: 40px; */
    border-radius: 10px;
}

h2 {
    font-size: 44px;
    margin-bottom: 0px;
    color: #ffffff;
    font-weight: 700;
}

p {
    margin-bottom: 33px;
    font-size: 15px;
    color: #bebebee6;
}

input::placeholder {
    color: #686868e6;
    font-weight: 100 !important;
}

.input-group {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 14px 0 7px;
    border: none;
    border-bottom: 1px solid #2d2d2d;
    background: transparent;
    color: #d2d2d2;
    font-size: 16px;
    outline: none;
    transition: transform 0.2s ease-in-out, font-size 0.2s ease-in-out, color 0.2s ease-in-out;
}

.input-group input:focus::placeholder,
.input-group input:not(:placeholder-shown) {
    /* transform: translateY(-10px); */
    /* font-size: 12px; */
    color: #a0a0a0;
}


.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #7f7f7f;
}

a {
    color: #7f7f7fe6;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 15px;
}

button {
    background-color: #f27127;
    color: white;
    padding: 14px;
    margin: 35px 0 15px;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

.divider {
    margin: 20px 0;
    font-size: 1rem;
}

.social-login {
    display: flex;
    gap: 10px;
    /* align-items: center; */
    justify-content: center;
}

.social-login img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid white;
    padding: 5px;
    background: transparent;
}

.error-message {
    color: #fcfcfc;
    margin-bottom: 10px;
    display: none;
    border: 1px solid red;
    padding: 5px;
    text-align: center;
    font-weight: 100;
    border-radius: 10px;
}

.continue,
.social {
    display: flex;
    justify-content: center;
    width: 75%;
    padding: 11px 0 17px;
    margin: 0 auto;
}

.continue img,
.social img {
    width: 100%;
}
