/* Global box-sizing reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    height: 100vh;
    display: flex;
}

.container {
    display: flex;
    width: 100%;
    flex-direction: row;
}

/* Form Side */
.form-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 40px;
}

.form-box {
    max-width: 400px;
    width: 100%;
}

.form-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-card h1 {
    margin-bottom: 10px;
    margin-top: 5px;
    font-size: 28px;
}

.form-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.form-card label {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
    margin-top: 20px;
    text-align: left;
}

.form-card input[type="text"],
.form-card input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 6px;
    font-size: 15px;
}

.password-container {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}

.form-card button {
    width: 100%;
    padding: 14px;
    background-color: #006D5B;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 30px;
}

.form-card button:hover {
    background-color: #609882;
}

/* Image Side */
.image-side {
    flex: 1;
    background-image: url("../app/images/image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .image-side {
        height: 300px;
        width: 100%;
    }

    .form-side {
        width: 100%;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 500px) {
    .form-side {
        padding: 20px;
    }

    .form-box {
        max-width: 100%;
    }

    .form-card {
        padding: 30px 20px;
    }

    .form-card h1 {
        font-size: 22px;
    }

    .form-card p {
        font-size: 14px;
    }

    .form-card input[type="text"],
    .form-card input[type="password"] {
        padding: 10px;
        font-size: 14px;
    }

    .form-card button {
        padding: 12px;
        font-size: 14px;
    }
}
.vivid-image {
    max-width: 50%;
    height: auto;
    /* margin-bottom: 5px; */
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}


