/* Universal Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    background: #f2f2f2;
    height: 100%;
}

/* Container Adjustments */
.container {
    width: 90%; /* Percentage width for responsiveness */
    max-width: 1400px; /* Increased max-width for larger screens */
    margin: 0 auto; /* Center the container */
}

/* Breaks Input and Chat Now */
.wrap-input, .wrap-notice {
    position: relative;
    margin-bottom: 20px;
}

/* Form Styling */
.wrap-form {
    background-color: #f6f6f6; /* Light background for contrast */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px; /* Space from top */
    max-width: 600px; /* Increased width for form */
    width: 100%; /* Ensure full width */
}

/* Wrapper for Input and Icon */
.wrap-input {
    position: relative;
    margin-bottom: 20px;
}

.label-input {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    pointer-events: none; /* Makes the icon unclickable */
}

.wrap-notice {
    width: 100%; /* Adjust the width as needed */
}

/* Style for the Input Field */
.input {
    width: 100%;
    padding: 10px;
    padding-left: 50px; /* Adjust this to ensure the text doesn't overlap with the icon */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

.input:focus {
    border-color: #E47D8A;
    outline: none;
}

/* Title and Subtitle Styles */
.form-title {
    text-align: center;
    font-size: 28px; /* Larger title font */
    margin-bottom: 10px;
}

.form-sub-title {
    text-align: center;
    font-size: 20px; /* Larger subtitle font */
    margin-bottom: 20px;
}

/* Input Styling */
.input {
    width: 100%;
    padding: 10px;
    padding-left: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.input:focus {
    border-color: #E47D8A;
    outline: none;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Adjust as necessary */
    left: 50%;
    margin-left: -80px; /* Center the tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23999" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 12px;
}

select:focus {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Button Styling */
.login-button {
    width: 100%; /* Full width button */
    padding: 12px;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #388E3C; /* Hover state */
}

/* Media Queries for Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .wrap-form {
        padding: 20px;
        max-width: 450px; /* Narrower form for smaller screens */
    }

    .form-title {
        font-size: 24px;
    }

    .form-sub-title {
        font-size: 18px;
    }

    .input, select {
        font-size: 14px;
    }

    .login-button {
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) {
    /* Specific styles for larger screens */
    .wrap-form {
        margin-top: 80px; /* Space from the top */
        max-width: 700px; /* Increased width for form */
    }

    .form-title {
        font-size: 32px; /* Larger title font */
    }

    .form-sub-title {
        font-size: 22px;
    }

    .input, select {
        font-size: 18px;
    }

    .login-button {
        font-size: 18px;
    }
}

/* Add responsive styles */
@media screen and (max-width: 768px) {
    .wrap-form {
        padding: 15px; /* Adjust padding */
    }

    .form-title {
        font-size: 20px; /* Slightly smaller title */
    }

    .form-sub-title {
        font-size: 16px; /* Adjust sub-title size */
    }

    <!-- .input, select, .login-button {
        font-size: 14px; /* Reduce font size for smaller screens */
        padding: 10px;
        padding-left: 30px; /* Adjust this to ensure the text doesn't overlap with the icon */
    } -->
}
