@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
* {
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    /* background-color: rgb(17, 155, 194); */
    background-image: url("IMAGE/first-western-bank-trust-background-landscape-f737beb8.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    max-width: 480px;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 0;
    /* background-color: rgb(21, 21, 21); */
    background-color: rgb(28, 28, 28);
    border-radius: 10px;
}

.container_element {
    max-width: 350px;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    /* background-color: rgba(0, 0, 0, 0.811); */
    padding: 15px;
    border-radius: 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

nav img {
    width: 250px;
    height: 80px;
    object-fit: contain;
}

.one {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
}

.welcome {
    font-size: 25px;
    font-weight: 400;
    color: rgb(57, 57, 57);
    margin-bottom: 0;
    padding-bottom: 20px;
}

.welcome_nxt {
    margin-top: 0;
    padding-top: 0;
    font-size: 15px;
    font-weight: 400;
    color: rgb(57, 57, 57);
}

.two {
    position: relative;
}

.two input {
    width: 100%;
    height: 50px;
    border: 1px solid rgb(126, 126, 126);
    border-radius: 5px;
    padding-left: 10px;
    margin-bottom: 20px;
    outline: none;
    background-color: rgb(28, 28, 28);
    font-size: 15px;
    font-weight: 400;
    color: #b3bfcc;
}

.two label {
    position: absolute;
    left: 10px;
    top: 14px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(57, 57, 57);
}

.three {
    margin-top: 0;
    padding-top: 0;
    display: flex;
    justify-content: right;
    align-items: center;
}

.three p {
    margin-top: 0;
    padding-top: 0;
    font-size: 14px;
    font-weight: 500;
    color: rgb(11, 116, 145);
}

.button {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button button {
    width: 70px;
    height: 45px;
    border-radius: 5px;
    border: none;
    background-color: #126f4e;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.after_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.after_container p {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

footer {
    background-color: rgb(28, 28, 28);
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: fit-content;

}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0;
    padding: 5px;
}

.footer p {
    font-size: 13px;
    font-weight: 400;
    color: rgb(126, 126, 126);
    text-align: center;
}


.footer p span {
    margin-right: 10px;
    margin-left: 5px;
}

.padding {
    padding: 10px;
}

.two input:focus + #absolu,
.two input:not(:placeholder-shown) + #absolu{
    top: -7px;
    font-size: 12px;
    transition: all ease-in-out 300ms;
    font-size: 14px;
    color: #126f4e;
    background-color: rgb(28, 28, 28);
    padding-left: 3px;
    padding-right: 3px;
}


.two input::placeholder {
    color: transparent;
}

.two input:focus {
    border: 2px solid #126f4e;
}

.two input:not(:focus) + #absolu{
    color: rgb(161, 161, 161);
}


