body {
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    color: #003c3c;
}

/* Left side (60% of the screen) */
.left-side {
    width: 60%;
    background-color: #00dea5;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers images horizontally */
    align-content: center;
}

/* Right side (40% of the screen) */
.right-side {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px; /* Increased width */
    text-align: center;
}

.arch-photo img{
    width: 70%;
    margin-left: 15%;
    margin-top: 5%
}

.logo img {
    width: 70px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #003c3c;
}

.name-group {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* Space between first & last name */
}

.name-group .input-group {
    width: 50%; /* Each takes half the width */
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.input-group input {
    width: calc(100% - 25px); /* Adjust width to account for padding */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 4px 4px 0 #00dea5; /* Shadow to the bottom and right */
    transition: box-shadow 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #00dea5;
    box-shadow: 4px 4px 0 #00dea5; /* Keep shadow on focus */
}

.login-button {
    width: 50%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #00dea5;
}

.signup-link {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
    color: #00dea5;
}

.password-tooltip {
    position: absolute;
    left: -230px; /* Moves box to the left */
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    display: none; /* Hidden by default */
}

/* Show tooltip on hover */
.input-group:hover .password-tooltip {
    display: block;
}

.privacy-policy-group {
    display: flex;
    align-items: center;
    gap: 8px; /* Adjust spacing between checkbox and label */
    margin-top: 10px;
}

/* Positioning wrapper for the input field */
.password-container {
    position: relative;
    align-items: center;
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .left-side {
        display: none; /* Hide the left section with arch image */
    }

    .right-side {
        width: 100%; /* Make form section take full width */
    }

    .login-container {
        width: 90%;
        max-width: 400px;
        padding: 15px;
        box-shadow: none;
    }

    .name-group {
        flex-direction: column; /* Stack name fields vertically */
    }

    .name-group .input-group {
        width: 100%; /* Full width for name inputs */
    }

    /* Fix password tooltip for mobile */
    .password-tooltip {
        position: static;
        margin-bottom: 8px;
        width: 100%;
        left: 0;
        transform: none;
    }

    .input-group input {
        width: calc(100% - 22px);
    }

    .login-button {
        width: 100%;
    }
}