
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #fff;
    background-color: #16365d;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.box {
    position: relative;
    width: 380px;
    height: 500px;
    background: #f7f7f7;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow: hidden;
}


.form {
    position: absolute;
    inset: 2px;
    border-radius: 8px;
    background: #fff;
    z-index: 10;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    top: 100px;
}

    .form h2 {
        color: #395144;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.1em;
    }
.logo {
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 100;
    display: flex;
    width: 100%;
    background-color: #16365d;
    justify-content: center;
}
.loginBox {
    width: 100%;
    font-size: 1EM;
    color: #162A4B;
}
.Textbox {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

    .inputBox {
        position: relative;
        padding: 11px 25px;
        margin-top: 35px;
    }

    .inputBox input {
        position: relative;
        width: 100%;
        background: transparent;
        outline: none;
        color: #162A4B;
        border:none;
        font-size: 1em;
        letter-spacing: 0.05em;
        z-index: 10;
    }

    .inputBox span {
        position: absolute;
        left: 0;
        font-size: 2em;
        color: #AA8B56;
        pointer-events: none;
        letter-spacing: 0.05em;
        transition: 0.5s;
    }

    .inputBox input:valid ~ span,
    .inputBox input:focus ~ span {
        color: #162A4B;
        transform: translateX(0px) translatey(-34px);
        font-size: 0.80em;
    }

    .inputBox i {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background-color: #edf2f3;
        border-radius: 4px;
        transition: 0.5s;
        z-index: 9;
    }

    .inputBox input:valid ~ i,
    .inputBox input:focus ~ i {
        height: 44px;
    }

.Links {
    display: flex;
    justify-content: space-between;
}

    .Links a {
        margin: 10px 0;
        font-size: 0.75em;
        color: #007481;
        text-decoration: none;
    }

        .Links a:hover,
        .Links a:nth-child(2) {
            color: #55b94a;
        }

input[type="submit"] {
    border: none;
    outline: none;
    background: #162A4B;
    padding: 11px 25px;
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    color: #FFF;
}

    input[type="submit"]:active {
        opacity: 0.8;
        color: #FFF;
        background: #162A4B;
    }


#error_login {
    color: #e30000;
    font-size: 13px;
}
#Signup{
    font-size:14px;
}

