.login-section {
    position: absolute;
    left: 20px;
    top: 48%;
    transform: translateY(-50%);
    z-index: 10;
    width: 600px;
    padding: 20px;
    background:  transparent;
    border-radius: 8px;
}

.login-section h1 {
    font-family: 'Ancizar Serif', serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 20px;
    color: #ebf2fd;
    max-width: 100%; /* Prevent overflow */
    overflow-wrap: break-word; /* Handle long words */
}

.login-section h2 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 44px;
    color: #E6F0FD;
    max-width: 100%;
    overflow-wrap: break-word;
}
.login-section h2 a {
    color: #E6F0FD; /* Match the input background color for visibility */
    text-decoration: underline;
    cursor: pointer;
    font-size: 25px;
}

.login-section h2 a:hover {
    color: #FFFF00; /* Slightly lighter shade on hover */
}

.login-section .form-container {
    display: flex;
    align-items: baseline; /* Align based on text baseline */
    gap: 10px; /* Consistent spacing */
}

.login-section input {
    width: 260px;
    height: 60px; /* Fixed height */
    padding: 0; /* Remove padding to control height precisely */
    font-size: 24px;
    line-height: 60px; /* Match height for vertical centering */
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    border: 2px solid #8C959B;
    border-radius: 12px;
    text-align: center;
    background: #FFF;
    box-sizing: border-box;
    vertical-align: middle; /* Ensure consistent vertical alignment */
    padding-top: 5px;
    letter-spacing: 1; /* Adds space between all letters */
}

.login-section input::placeholder {
    opacity: 0.75;
}

.login-section button {
    width: 130px;
    height: 60px;
    padding: 0;
    font-size: 24px;
    line-height: 0px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
    color: #E6F0FD;
    background: #6b7280;
    border: 1px solid #6b7280;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    vertical-align: middle;
    margin-left: 15px;
    position: relative;
    padding-top: 3px;
}
.login-section button p {
    margin-left: -25px;
}

.login-section button span {
    display: inline-block;
    transition: transform 0.2s ease;
    font-family: 'Wingdings 3', sans-serif;
    margin-left: 70px;
    rotate: 90deg;
}


.login-section button:hover span {
    transform: translateY(-6px); /* Move text 6px to the right on hover */
}

.login-section .trustpilot-container {
    display: flex;
    margin-top: 30px;
    margin-left: 0;
}

.login-section .trustpilot-svg {
    height: auto;
    width: 170px;
}
.login-back {
    color:white;
    font-family: 'League Spartan', sans-serif;
    font-size: 8px;
}
.login-back a {
    color:white;
    font-family: 'League Spartan', sans-serif;
    font-size: 8px;
}


   



/* Mobile Styles */
@media (max-width: 768px) {
    
.login-section button span {
        padding-left: 0px; /* Reset padding for mobile */
    }


    /* Adjust login-section for mobile */
    .login-section {
        width: 100%;
        left: 0;
        padding: 10px;
        top: 30%; /* Adjusted to align with the mobile SVG */
        transform: translateY(-35%);
        text-align: center;
    }


    .login-section h1 {
        font-size: 60px;
        line-height: 60px;
        margin-top: 0px;
        margin-bottom: 20px;
    }

   .login-section h2 {
        font-size: 28px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .login-section .form-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .login-section input,
    .login-section button {
        width: 100%;
        max-width: 300px;
        height: 50px;
        font-size: 20px;
    }

    .login-section button {
        margin-left: 0;
        margin-top: 30px;
    }


    .login-section .trustpilot-container {
        justify-content: center;
    }

    .make-logo {
        margin-top: 0px;
        min-width: 130px;
        padding-left: 30px;
    }
    .login-section .trustpilot-svg {
         height: auto;
         width: 170px;
         visibility: collapse;
    }
    .login-section h2 a {
        color: #FFFF00;
        text-decoration: underline;
        cursor: pointer;
        font-size: 22px;
        line-height: 2;
    }
}