@import url("https://fonts.googleapis.com/css2?family=Prompt: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");

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

.login-body {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.login {
    width: 1013px;
    display: flex;
    padding: 10px 10px 10px 40px;
    background-color: #f7f8f8;
    border-radius: 10px;
}

.login-left {
    width: 46%;
    /* background-color: #f00566; */
    padding-top: 40px;
}

.login-left p {
    margin-top: 80px;
    font-size: 23px;
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    color: #f00566;
    line-height: 28px;
}

.login-right {
    width: 54%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 40px 73px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
}

.remember-me {
    display: flex;
    margin-bottom: 65px;
    gap: 5px;
    align-items: center;
    color: #b1b6b8;
    font-size: 13px;
    width: 100%;
}

.remember-me input {
    border: 2px solid #f00566;
    border-radius: 6px 0 6px 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
    align-items: center;
}

.error-message {
    font-size: 14px;
    letter-spacing: 0.7px;
    text-align: center;
    color: #ff0000;
    margin-top: 2.75rem;
    min-height: 1.5rem;
}

h1 {
    display: none;
}

.social-box {
    display: flex;
    margin: 70px 0 75px;
    gap: 20px;
}

.social-link {
    background-color: #f00566;
    width: 26px;
    height: 26px;
    padding: 6px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
}

.badge {
    width: 150px;
}

.logo-2 {
    width: 60px;
}

.text-input {
    max-width: 400px;
    width: 100%;
    margin-bottom: 30px;
    padding: 9px;
    border: 1px solid #b1b6b8;
    border-radius: 6px 0 6px 0;
}

.login-button {
    max-width: 400px;
    width: 100%;
    margin-bottom: 53px;
    color: white;
    background-color: #f00566;
    border: none;
    border-radius: 6px 0 6px 0;
    font-size: 19px;
    padding: 9px;
    cursor: pointer;
}

.forgot {
    color: #f00566;
    text-decoration: underline;
    font-size: 13px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .login-body {
        height: unset;
    }

    .login {
        flex-direction: column-reverse;
        padding: 30px;
    }

    .login-left,
    .login-right {
        width: 100%;
    }

    .login-left p {
        margin-top: 30px;
    }

    .social-box {
        margin: 30px 0 30px;
    }
}

.input-wrapper {
    position: relative;
    width: 100%;
}
.input-wrapper img {
    display: none;
}

/* .text-input {
    width: 100%;
    padding-right: 30px;
    box-sizing: border-box;
} */

.check-image {
    position: absolute;
    right: 8px; /* Distance from the right edge of the input */
    top: 23%;
    width: 14px;
    height: 14px;
}
.view-image {
    position: absolute;
    right: 32px;
    top: 23%;
    /* width: 14px; */
    height: 14px;
}

.main-logo {
    width: 235px;
}