﻿.layout-body {
    background-color: black;
}

.login-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 100px;
    /* margin-left: 700px;
    margin-bottom: 200px;
    margin-right: 350px;
    width: 400px;
    height: 280px; */
    border-radius: 10px;
}

.login-form-logo {
    color: white;
    width: 400px;
    text-align: center;
    font-size: 29px;
    border: 0;
}

.login-form-title {
    color: white;
    width: 400px;
    text-align: center;
    font-size: 29px;
    border: 0;
    padding-bottom: 15px;
}

.login-form-container .card {
    display: flex;
    width: 350px;
    height: auto;
    border: 2px solid rgb(239, 236, 236);
    border-radius: 10px;
    box-shadow: rgb(128, 128, 128) 0px 0px 15px;
}

.login-form-group {
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    width: auto;
    position: static;
    margin-bottom: 10px;
}

/*.login-form-label {
    width: 100%;
    transition: ease-in-out 0.2s;
}

.login-form-control {
    width: 100%;
    height: 34px;
    margin-bottom: 5px;
    border-radius: 3px;
    border-bottom-color: rgb(13, 211, 213);
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    transition: ease-in-out 0.2s;
}*/

.login-form-control {
    /*width: 100%;
    height: 34px;
    margin-top: 20px;
    margin-bottom: 0px;
    border-radius: 3px;
    border-bottom-color: rgb(13, 211, 213);
    border-bottom-width: 1px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    transition: ease-in-out 0.2s;
    position: relative;*/
    padding: 11px 3px;
    border-bottom: 2px #a0a7ab solid;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    height: 40px;
    font-size: 14px;
}

.login-form-label-username, .login-form-label-password {
    /*position: absolute;
    left: 18px;
    padding-top: 25px;
    cursor: text;
    color: gray;
    transition: ease-in-out 0.5s;*/
    color: #5c6061;
    font-size: 14px;
    position: relative;
    padding: 0 3px;
    background: #fff;
    width: fit-content;
    border-radius: 20px;
    margin-bottom: 0px;
}

.login-form-control:focus {
    /*outline: none;
    border-bottom-width: 4px;*/
    border-bottom: 3px #5c6061 solid;
    box-shadow: none;
}

    /*.login-form-control:focus + .login-form-label-username {
        color: rgb(13, 211, 213);
        top: -15px;
    }

    .login-form-control:focus + .login-form-label-password {
        color: rgb(13, 211, 213);
        top: 60px;
    }*/

.login-form-button {
    margin-top: 20px;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    background-color: rgb(13, 211, 213);
    border-color: rgb(13, 211, 213);
}

    .login-form-button:hover {
        background-color: rgb(32, 190, 181);
        border-color: rgb(13, 211, 213);
    }

.login-form-social-header {
    display: flex;
    justify-content: center;
    height: 50px;
    align-items: center;
    padding-top: 10px;
}

.login-form-social-header .line {
    height: 1px;
    flex: 1 1 0%;
    background-color: rgb(27, 142, 135);
}

.login-form-social-label {
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: rgb(27, 142, 135);
    padding-left: 10px;
    padding-right: 10px;
}

.login-form-social { 
    display: flex;
    justify-content: space-evenly;
    height: 50px;
    align-items: end;
}

.login-form-social a {
    color: black;
    font-size: 20px;
    font-weight: bold;
}


/* @media only screen and (max-width: 800px) {
     .login-form-container {
        margin-right: 50px;
    }
} */