﻿html, body {
    height: 100%;
    margin: 0;
}

.profile-views {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.container-fluid {
    height: 100vh; 
}

.login-info {
    background-color: #ffffff; 
    text-align: center;
    padding: 20px;
}

.login-branding {
    background-color: #f4f4f4;
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 290px;
    margin-bottom: 0px;
}

.form-group {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none; 
    border-bottom: 2px solid #ccc; 
    outline: none;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-bottom-color: #007bff;
    }

.form-label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background-color: white;
    padding: 0 5px;
    transition: all 0.3s ease;
    pointer-events: none;
    color: #777;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    top: 0;
    left: 10px;
    font-size: 12px;
    color: #007bff;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-yellow {
    background-color: #ffcc00;
    color: #fff;
    border: none;
    padding: 10px 0;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

    .btn-yellow:hover {
        background-color: #e6b800;
    }

.mt-4 {
    margin-top: 1.5rem;
}

.forgot-password {
    font-size: 13px;
    color: #6c757d;
    text-decoration: none;
    text-decoration: underline !important;
}

.text-danger {
    position: absolute;
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #e3342f; 
    word-wrap: break-word;
    max-width: 100%;
}

@media (max-width: 767.98px) {
    .login-branding {
        display: none; /* Hide branding section on small screens */
    }
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #000 !important;
    border-bottom: 2px solid #ccc !important;
    transition: background-color 5000s ease-in-out 0s;
}

    input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 30px white inset !important;
        -webkit-text-fill-color: #000 !important;
        border-bottom: 2px solid #007bff !important;
    }