@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    background-color: #0F292F;
    /* background: linear-gradient(to right, #18181B, #ff0163, #18181B); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    background-image: url('/assets/background.png'); /* Adjust the path to your image */
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif; /* Optional: Adjust font family */
   
}


.container{
    background-color: #18181B;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    width: 750px;
    max-width: 100%;
    min-height: 480px;
}

.container p{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.3px;
    margin: 20px 0;
}

.container span{
    font-size: 14px;
}

.container a{
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0 10px;
}

.container button{
    background-color: #14A098;
    color: #fff;
    font-size: 12px;
    padding: 10px 45px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
}

.container button.hidden{
    background-color: transparent;
    border-color: #18181B;
}

.container form{
    background-color: #18181B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    height: 100%;
}

.container input{
    background-color: #eee;
    border: none;
    margin: 8px 0;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px;
    width: 80%;
    outline: none;
}


.form-container{
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in{
    color: #ffffff;
    left: 0;
    width: 50%;
    z-index: 2;
}

.container.active .sign-in{
    transform: translateX(100%);
}

.sign-up{
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container.active .sign-up{
    color: #ffffff;
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: move 0.6s;
}

.toggle-container{
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    border-radius: 10px;
    z-index: 1000;
}

.container.active .toggle-container{
    transform: translateX(-100%);
    border-radius: 10px 10px 100;
}

.toggle{
    background-color: #14A098;
    height: 100%;
    color: #fff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.container.active .toggle{
    transform: translateX(50%);
}

.toggle-panel{
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    text-align: center;
    top: 0;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.toggle-left{
    transform: translateX(-200%);
}

.container.active .toggle-left{
    transform: translateX(0);
}

.toggle-right{
    right: 0;
    transform: translateX(0);
}

.container.active .toggle-right{
    transform: translateX(200%);
}

.blur{
    position: absolute;
    box-shadow: 0 0 1000px 50px #14A098;
    z-index: -100;
}

.nav {
    background-color: rgba(15, 41, 47, 0);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 2px;
    position: fixed;
    top: 0;
    left: 10;
    width: 100%;
    z-index: 100;
}

.logo {
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
}
.logo a {
    text-decoration: none;
    color: #ffffff;
}
.btn {
    height: 35px;
    background: #14A098;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all .3s;
    margin-top: 10px;
    padding: 0px 10px;
    box-shadow: 0px 0px 0 #14A098;

}
.links {
    margin-bottom: 15px;
    color: #ffffff;
}

.right-links a {
    padding: 0 10px;
    color: #ffffff;
    text-decoration: none;
}

.message-box {
    position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        color: white;
        opacity: 100;
        pointer-events: none; /* This allows click events to pass through */
        z-index: 999;
}

.notification {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.6s; /* 600ms to fade in/out */
    pointer-events: none; /* This allows click events to pass through */
    z-index: 999;
}

.notification.show {
    opacity: 100;
}

.form {
    max-width: 400px;
    margin: 50px auto;
    background-color: #18181B;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.form-title {
    font-size: 30px; /* Set font size */
    text-align: center;
    margin-bottom: 200px;
    color: #f8f8f8; /* Your chosen color */
}

.submit {
    padding: 10px 20px;
    background-color: #14A098;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; /* Remove underline */
    font-size: 12px; /* Set font size */
}

.field.input {
    margin-bottom: 0px;
    text-align: center;
    width: 450px; /* Adjust the width as needed */
}

.submitotp {
    padding: 10px 20px;
    background-color: #7b1717;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; /* Remove underline */
    font-size: 12px; /* Set font size */
}

.text-end {
    text-align: right;
}


.form {
    max-width: 400px;
    max-height: 200px;
    margin: 50px auto;
    background-color: #18181B;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

