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

body {
    background-color: #1e1e1e;
}

.container {
    display: flex;
    height: 100vh;
    background-color: #fff;
}

.left {
    flex: 1;
    background-image: url("your-image-path.jpg"); /* Replace with your image */
    background-size: cover;
    background-position: center;
    position: relative;
}

.right {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.logo img {
    width: 40px;
}

.logo h2 {
    font-size: 24px;
    font-weight: 700;
}

.login-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-box p {
    font-size: 14px;
    /* margin-top: 10px; */
    line-height: 30px;
}

.login-box p a {
    color: #cba561;
    text-decoration: none;
}

.login-box input[type="email"],
.login-box input[type="file"],
.login-box input[type=""],
.login-box input[type="password"] {
    width: 100%;
    padding: 13px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fef2e5;
}

.login-box input[type="text"] {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fef2e5;
}

.login-box .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.login-box .options label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.login-box .options a {
    color: #cba561;
    text-decoration: none;
}

.form-group {
    display: block !important;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.login-box button.login-btn {
    background-color: #cba561;
    color: #fff;
    padding: 13px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 1px;
    margin-top: 11px;
}

input#password {
    width: 100%;

    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fef2e5;
}

input#password_confirmation {
    width: 100%;
    padding: 13px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fef2e5;
}

.login-box button.google-btn {
    background-color: #fff;
    border: 1px solid #ccc;
    margin-top: 12px;
    padding: 10px;
    width: 100%;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* soft shadow */
    transition: box-shadow 0.3s ease;
}

.login-box button.google-btn:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); /* deeper shadow on hover */
}

.login-box button.google-btn img {
    width: 25px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        height: 300px;
    }
}
.login-box input[type="email"],
.login-box input[type="password"] {
    margin-bottom: 10px;
}
.left {
    flex: 1;
    height: 100vh;
    overflow: hidden;
}

.left img {
    height: 100%;
    width: 100%;
    /* object-fit: cover; */
    display: block;
}

.logo-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo-img img {
    height: auto;
}

@media (min-width: 1024px) {
    .right {
        padding: 30px 80px !important;
    }
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .left {
        width: 100%;
        height: 250px;
    }

    .left img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .right {
        padding: 30px 20px;
    }

    .login-box h3 {
        font-size: 22px;
    }

    .login-box p {
        font-size: 13px;
    }

    .login-box input[type="email"],
    .login-box input[type="password"],
    .login-box input[type="name"],
    .login-box input[type="file"],
    .login-box input[type="number"],
    .login-box input[type="select"],
    .login-box input[type="confirmpassword"] {
        font-size: 14px;
    }

    .login-box .options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .login-box button.login-btn,
    .login-box button.google-btn {
        padding: 12px;
        font-size: 15px;
    }
}

.button-flex {
    display: flex;
    gap: 10px;
}

.flex-bussiness {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .button-flex {
        display: block;
        gap: 10px;
    }

    .flex-bussiness {
        display: block;
        gap: 10px;
    }
}

.form-group label {
    margin-bottom: 6px;
    display: inline-block;
}

/* account verification css here  */
