/* Apply a full-height dark blue background */
body {
    /* background-color: #071936; */
    color: #ffffff;
    font-family: "Noto Sans";
    /* display: flex; */
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* Centered form container with card style */
.form-container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    /* Adds padding inside the container */
    background-color: white;
    color: grey;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Heading for the form */
.form-container h2 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Styling for form labels */
.form-container label {
    display: block;
    text-align: left;
    font-size: 0.9rem;
    /* color: #b0c4de; */
    margin-bottom: 0.3rem;
}

/* Input fields styling */
.form-container input[type="text"],
.form-container input[type="password"],
.form-container input[type="email"],
.form-container button {
    width: 100%;
    /* padding: 12px; */
    /* Adds padding inside the text fields */
    /* margin: 10px 0; */
    border-radius: 0.3125rem;
    border: 1px solid #E2EAF8;
    box-sizing: border-box;

    /* Ensures padding doesn’t affect width */
}

/* Button styling */
.form-container button {
    /* width: 100%; */
    padding: 0.5rem;
    background-color: #0057FF;
    color: #ffffff;
    /* font-size: 1rem;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease; */
}

.form-container button:hover {
    background-color: #437cf0;
}

/* Adjust the message display style */
.form-container p.message {
    color: #ff6961;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.frosted-glass-effect {
    /* background: linear-gradient(0deg, #0a0a0a, #0a0a0a), linear-gradient(0deg, #181818, #181818);
    opacity: 0.95; */
    border-radius: 0.9375rem;
    border: 1px solid #E2EAF8;
    opacity: 0.85;
    background: white;
    box-shadow: 2px 2px 5px 2px #E2EAF8;
    backdrop-filter: blur(50px);
}

.logo-container {
    height: 35px;
    width: 281px;
    margin: auto;
}

.input-container-blue-font {
    color: #1A68FF;
}

.input-container-button-color {
    color: #0057FF;
}

.font-noto {
    font-family: "Noto Sans";
}

.input-container {
    display: flex;
    /* height: 100%; */
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-width: 1px;
    border-radius: 8px;
    border: 0.5px solid var(--Color-Border-Form-Default, #E2EAF8);
    background-color: white;
}

.main-bg {
    background: whitesmoke;
}

.h-100v {
    height: 100vh;
}

form label {
    font-family: "Noto Sans";
}

.tnc-checkbox::before {
    height: .5rem;
    transform-origin: bottom left;
    width: .5rem;
    scale: 0;
    background-color: #fff;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    box-shadow: 0 0 #0000, 0 0 #0000, inset 0 2px 4px 0 rgba(0, 0, 0, .05);
    transition-delay: .12s;
    transition-duration: .15s;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
    content: "";

}

.tnc-checkbox:checked::before {
    scale: 1;
    background: black;
}

.tnc-checkbox-border {
    border-color: #5A77A8;
}

.tnc-checkbox-text {
    color: #5A77A8;
}

.error-field {
    border-color: red !important;
}

/* Responsive styling */
@media (max-width: 500px) {
    .form-container {
        padding: 1.5rem;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }
}