﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section1 {
    overflow: hidden;
    position: relative;
    height: 100vh;
    background-image: none;
    opacity: 1;
    filter: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background06.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
    filter: blur(5px);
    z-index: 0;
}

.form-login-container {
    z-index: 1;
    background-color: white;
    font-family: 'Kamerik105-Book', sans-serif;
    color: #224260;
    font-size: 1.25rem;
    font-weight: bold;
    padding: clamp(2rem, 2vw, 5rem);
    border-radius: 25px;
}

.form-login-container h1 {
    text-align: center;
}


.form-input-wrapper {
    margin-top: 3vh;
}

.form-input-wrapper input {
    margin-top: 1vh;
    font-size: 1.25rem;
    width: 100%;
    padding: 15px;
}

.password-wrapper {
    position: relative; /* container for positioning the icon */
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px; /* space for the eye icon */
}

.toggle-password {
    position: absolute;
    top: 55%;
    right: 10px; /* distance from right edge */
    transform: translateY(-50%);
    cursor: pointer;
    color: #224260;
}


.form-input-wrapper span {
}

.form-btn-container {
    display: flex;
    justify-content: center;
}

.login-btn {
    font-family: 'Kamerik105-Book', sans-serif;
    font-weight: bold;
    font-size: 1.25rem;
    color: white;
    padding: 15px;
    margin: 20px;
    background-color: #224260;
    border: 0;
    border-radius: 25px;
}

@media (max-width: 768px) {
    .form-login-container {
        font-size: 1rem;
    }

    .form-input-wrapper input {
        font-size: 1rem;
        padding: 10px;
    }

    .login-btn {
        font-size: 1rem;
        margin: 15px;
    }
}