<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.registration-form, .login-form-my {
    width: 25%;
    margin-bottom: 50px;
}

.name-input, .last-name-input, .email-input, .city-input, .country-input, .password-input, .repeat-password-input {
    color: black;
}

.field-label {
    display: block;
    font-size: 12px;
    color: #69b287;
    margin: 0;
    border-left: 45px solid #69b287;
    transition: background-color 0.3s, color 0.3s;
    padding-left: 10px;
}

.field-container {
    display: flex;
    align-items: center;
    position: relative;
}

.img-container {
    height: 36px;
    width: 45px;
    min-width: 45px; /* Enforce minimum width */
    min-height: 36px; /* Enforce minimum height */
    background-color: #69b287;
    box-sizing: border-box;
}

    .img-container img {
        width: 100%;
        height: 100%;
        padding: 5px;
        box-sizing: border-box;
        object-fit: contain;
    }

.field-container input {
    width: 80%;
    border: 1.5px solid #69b287;
    padding: 5px;
    box-sizing: border-box;
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition */
}

    .field-container input:hover {
        background-color: #dbece2;
        border-color: #69b287;
    }

.field-container:hover .field-label {
    background-color: #69b287;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 1;
}


.registration input {
    width: 94%;
    border: 1.5px solid #69b287;
    box-sizing: border-box;
}

    .registration input:hover {
        background-color: #dbece2;
        border-color: #69b287;
    }

        .registration input:hover registration label {
            background-color: #69b287;
        }

.btn {
    width: 100%;
    background-color: #69b287;
    border: none;
    height: 60px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    margin-top: 30px;
}

#regBtn {
    margin-top: 0;
}

.registration:hover {
    background-color: #69b287;
    border-right: 18px solid #69b287;
}

    .registration:hover .field-label {
        color: white;
    }

    .registration:hover padding-simulation {
        width: 100%;
    }

.padding-simulation {
    height: 18px;
    width: 45px;
    background-color: #69b287;
}

.registration-repeat-password {
    margin-bottom: 40px;
}

#lastPaddingSimulation {
    width: 0;
}

#lastPaddingSimulationLogin {
    width: 0;
}

/*---------------------------Modal Window---------------*/


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 100;
}

.modal-content {
    background-color: rgba(105,178,135,0.6);
    margin: 15% auto;
    padding: 20px;
    border: none;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-text {
    font-size: 26px;
}

/*invalid username form password*/
.alert.alert-danger {
    background-color: #f8d7da; 
    color: black; 
    border-color: #f5c6cb; 
    padding: 15px; 
    font-size: 16px; 
    border-radius: 5px; 
    margin-bottom: 20px; 
    text-align: center; 
}


@media (max-width: 767px) {
    .main-content {
        width: 100%;
    }

    .login-form-my {
        width: 80%;
    }

    .field-label {
        margin: 0;
        border-left: 45px solid #69b287;
        transition: background-color 0.3s, color 0.3s;
        padding-left: 10px;
    }

    .padding-simulation {
        width: 45px;
    }

    .form-check-input {
        margin-top: 0;
    }

    .no-acc a {
        color: black;
    }

    .registration-form {
        width: 80%;
    }
}
</pre></body></html>