
body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    background: #0e0016;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    display: flex;
    max-width: 100%;
    width: 100%;
    height: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.nav-left {
    font-size: 24px;
    color: rgb(211, 140, 247);
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 20px;
}

.nav-left span {
    color: white;
}

.box {
    padding: 2%;
    background-color: #1e1e2f;
    color: white;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
}

.title {
    margin-bottom: 20px;
    color: white;
    text-align: center;
    font-size: 1.5em;
}

.details {
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
}

.input-box {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.input-box input {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid white;
    color: white;
    margin-bottom: 10px;
}

.input-box button {
    cursor: pointer;
    width: 150px;
    border: none;
    padding: 5.5px;
}

.forgot-password {
    font-size: 12px;
    margin: 20px 0 30px;
    text-align: center;
}

.forgot-password a {
    cursor: pointer;
    color: rgb(211, 140, 247);
    text-decoration: none;
}


.center-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-btn, .signup-btn {
    padding: 10px 50px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    background-color: rgb(211, 140, 247);
    color: white;
    cursor: pointer;
    transition: all .5s;
}

.option {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 30px;
    color: rgb(211, 140, 247);
    font-weight: bold;
    cursor: pointer;
}

.option div {
    padding: 10px;
    transition: color 0.3s;
}

.option div:hover {
    color: white;
}

#login-form-btn {
    border-bottom: 1px solid white;
}

.error-msg {
    width: 100%;
    padding-bottom: 20px;
    border: none;
    background-color: transparent;
    color: white;
}

.error-msg p {
    font-size: 14px;
}

.otp-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.otp-box input {
    width: 30px;
    height: 30px;
    margin: 3px;
    border-radius: 5px;
    border: 1px solid white;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.otp-box input::placeholder {
    color: transparent;
}

/* Hide login image on small screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .box {
        border-radius: 0;
        width: 90%;
        padding: 3%;
    }
    .nav-left {
        font-size: 18px;
        padding-left: 10px;
    }
    .error-msg p {
        font-size: 13px;
    }
}