﻿.login-html {
    height: 100vh;
}

.login-body {
    background: linear-gradient(135deg, #A05AFF, #1BCFB4);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.image-container {
    height: 100%;
    overflow: hidden;
    background-image: url(./assets/images/login-bg-03.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.form-container {
    padding: 2rem;
}

.logo {
    max-height: 1.5rem;
    object-fit: contain;
}

.input-group {
    position: relative;
    width: 100%;
}

    .input-group .form-control {
        border: none;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: .8rem;
        padding-bottom: .8rem;
    }

        .input-group .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

.container {
    padding: 8%;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    z-index: 4;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    z-index: 4;
}

.form-check-input:checked {
    background-color: #A05AFF;
    border-color: #A05AFF;
}

.btn-login {
    background: linear-gradient(135deg, #A05AFF, #9E58FF);
    border: none;
}

    .btn-login:hover {
        background: linear-gradient(135deg, #9E58FF, #A05AFF);
    }

.username-input {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top: 1px solid #ffffff48 !important;
    border-left: 1px solid #ffffff48 !important;
    border-right: 1px solid #ffffff48 !important;
}

.password-input {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
    border-bottom: 1px solid #ffffff48 !important;
    border-left: 1px solid #ffffff48 !important;
    border-right: 1px solid #ffffff48 !important;
}

.bg-copyright {
    background-color: rgba(0, 0, 0, 0.1);
}