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

body {
    background-color: #fff;
    color: #111;
}

.container {
    min-height: 100vh;
}

.left-section, .right-section {
    flex: 1;
    padding: 19px 70px 70px;
}

.left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.left-section .logo h1 {
        font-size: 27px;
    margin-bottom: 0px;
    font-weight: 800;
    text-transform: uppercase;
    color: blueviolet;
}
.left-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.left-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.left-section p {
    font-size: 14px;
    margin-bottom: 20px;
}

.google-btn {
    background-color: #f5f5f5;
    border: none;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}

.google-btn:hover {
    background-color: #e0e0e0;
}

.or {
    margin: 20px 0;
    text-align: center;
    color: #999;
}

form {
  text-align: left;
}
form label {
      margin: 0px 0 5px;
    display: block;
    font-size: 13px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
   width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 13px;
}

.terms {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.signup-btn {
    background-color: #111;
    color: #fff;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.signup-btn:hover {
    background-color: #333;
}

.login-link {
    margin-top: 20px;
    font-size: 14px;
}

.login-link a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.right-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    padding: 0;    background-image: url(rightimg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;    height: 100vh;
}

.right-section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 0 0 0 40px;
}

.overlay-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    max-width: 80%;
}

.overlay-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.overlay-text p {
    font-size: 13px;
    margin-bottom: 15px;
}

.badges span {
    background-color: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 12px;
    margin-right: 10px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
/* Custom position: top of the form */
#toast-container {
    top: 120px !important; /* Push below header */
    left: 32% !important;
    transform: translateX(-50%);
    width: auto;
    max-width: 600px;
    text-align: center;
}

/* Optional style tweaks */
.toast {
    font-size: 14px;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



/* Responsive */
@media only screen and  (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .left-section, .right-section {
        flex: 1;
        padding: 19px 10px 10px;
    }
    .right-section {
        order: -1;
        height: 300px;
        display:none;
    }
    .left-section {
        height: 100vh;
    }

    .right-section img {
        height: 300px;
        border-radius: 0;
    }

    .overlay-text {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    #toast-container {
        top: 267px !important;
        left: 188px !important;
        right: 0 !important;
        transform: translateX(-50%);
        width: auto;
        max-width: 600px;
        text-align: center;
    }
}
