﻿
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&display=swap');

body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.login-back {
    background-image: url(../images/login-back.jpg);
    background-position: center;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.card {
    box-shadow: 0 0 14px 5px #c7c4c4;
    border: none;
    margin-top: 100px;
    height: fit-content;
    padding-top: 50px;
}

.form-pad {
    padding: 30px 0px 30px 50px;
}

.form-group {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
    margin-left: 80px;
}

.form-field {
    font-family: inherit;
    width: 80%;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    outline: 0;
    font-size: 14px;
    color: #212121;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

    .form-field::placeholder {
        color: transparent;
    }

    .form-field:placeholder-shown ~ .form-label {
        font-size: 13px;
        top: 20px;
    }

    label,
    .form-field:focus ~ .form-label {
        position: absolute;
        top: 0;
        display: block;
        transition: 0.2s;
        font-size: 12px;
        color: #9b9b9b;
        font-weight: 500;
    }

    .form-field:focus ~ .form-label {
        color: #3074a6;
    }

    .form-field:focus {
        padding-bottom: 6px;
        border-bottom: 2px solid #3074a6;
    }

.welcome-text {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}

.btn-custom {
    width: 65%;
    color: white;
    background-color: #4583b1;
    margin-left: 80px;
    border-color: #4583b1;
}

    .btn-custom:hover {
        background-color: #3074a6;
        border-color: #3074a6;
    }

    .btn-custom:focus {
        box-shadow: none;
    }

.footer-text {
    padding-top: 10px;
    font-size: 13px;
    color: #767171;
    margin-left: 80px;
}

.msg-div {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    .login-img {
        display: none;
    }

    .footer-text {
        margin-left: 0;
        padding: 10px;
        text-align: center;
    }

    .form-pad {
        padding: 0;
    }
}

