﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    background-color: var(--bg-grey);
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

body {
    opacity: 0;
    animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out forwards;
}

*:not(body) {
    animation: fadeIn 0.3s ease-in-out forwards;
}

.client-login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1; 
    padding: 80px 0 0 0;
    margin: 0;
}

.pegasus-logo{
    width:140px;
    margin:10px 10px 0px 10px;
    transform:translateX(-25px);
}

.client-input-container {
    color: var(--primary-grey);
    background-color: rgb(128, 128, 128, 0.2);
    padding: 3px 3px 3px 15px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
}


.client-input-container i {
    font-size:18px;
}
   

.client-code-textbox {
    background-color: transparent;
    outline:none;
    border:none;
    margin:0;
    color: var(--primary-grey);
    font-size:18px;
    width:160px;
}

.client-code-textbox:focus-visible {
    margin: 0;
    outline: none;
    border: none;
}

.client-login-product-name {
    font-size: 50px !important;
    text-align: center;
    margin: 0 0 0 0;
    font-family: var(--monospace);
    font-weight:600;
}

.client-login-title {
    font-size: 25px !important;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    font-family:var(--roboto);
    max-width:70vw;
}
.text-danger{
    margin-top:0;
}

.subtitle {
    margin-top: 20px;
    margin-bottom:10px;
}

.client-login-div{
    width:250px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.client-login-btn {
    border-radius: 10px;
    width: 100%!important;
    box-sizing:border-box;
    max-width:none;
    margin-top:10px!important;
    padding:7px 0 7px 0;
}

.client-login-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
    background: linear-gradient(to bottom, var(--bg-grey), lightgrey);
    width: 100%;
    margin: 0;
    padding: 0;
}



@media only screen and (max-width: 767px) {
    .pegasus-logo {
        width:160px;
    }

    .client-login-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 50vh;
        margin: 0 0 0 0;
        padding: 110px 0 0 0;
    }
}