* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Titillium Web', sans-serif;
}

body,
html {
    height: 100%;
}

.container {
    display: flex;
    flex-direction: row;
    grid-template-columns: 1fr 2fr;
    height: 100vh;
}

.left {
    width: 34vw;
}

span.title {
    display: block;
    font-size: 1rem;
    color: black;
    text-align: left;
}

.right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #fbfbfb;
    max-width: 66vw;
}

.center {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #fbfbfb;
    max-width: 100vw;
}

.bg {
    width: 100%;
    height: 100%;
    background-image: url('../i/dev.webp') ;
    background-size: cover;
    background-position: center center;
}

.bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 34vw;
    height: 100%;
    background-color: rgb(0 43 113 / 78%);
    
}

.login-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
}

#resend-btn {
    background-color: transparent;
    color: #06c;
    cursor: pointer;
    border: 3px solid #06c;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 4px;
    font-weight: 600;
    height: 48px;
    padding: 0;
}

.otp-button {
    margin-bottom: 0.5rem;
}

.otp-input {
    margin-bottom: 1rem;
}

.login-box h2 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.login-btn {
    background-color: #6c63ff;
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}


.social-login {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.social-login a {
    margin: 0 8px;
    color: #3b5998;
    font-size: 20px;
    text-decoration: none;
}

form {
    display: flex;
    flex-direction: column;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input {
    padding: 0.5rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    height: 48px;
    background-color: white;
    border: 1px solid #ececec;
}

::placeholder {
    font-size: 1rem;
}

#password {
    margin-bottom: 1rem;
}

button {
    padding: 12px 24px;
    font-size: 1rem;
    background: #06c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    height: 48px;
}

.hidden {
    display: none;
}

.link {
    color: rgb(76, 76, 76);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

.link:hover {
    color: #06c;
    text-decoration: underline;
    font-size: 0.9rem;
}

.powered {
    display: block;
    position: absolute;
    bottom: 1rem;
    opacity: 0.5;
}

.powered a {
    color: black;
    text-decoration: none;
}