* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

:root {
    --blue: #14238A;
    --white: #ffffff;
    --yellow: #FCCE36;
    --red: #E31F28;
    --black: #000;
}

.login-form {
    background: url(../img/logobg.png);
    background-size: cover;
    width: 100%;
    height: 100vh;

    background-position: center;
}

.form {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: 15%;
    top: 27%;
    width: 100%;
}

form {
    width: 27%;
    border-radius: 1rem;
    padding: 2.5rem;
    background-color: var(--white);
}

.showpassword {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    padding-top: 10px;
    margin: auto;
    margin-right: 0;
    /* float: right; */
}

.forgotpassword {
    color: var(--black);
    font-size: 14px;
    text-decoration: none;
}

.form-control {
    height: 50px;
}

.showpassword span {
    font-size: 13px;
    font-weight: 600;
}

.btn-danger {
    margin-top: 1rem;
    padding: 10px;
    font-weight: 500;
    width: 100%;
}

.copyrights {
    color: #ffffff;
    margin-top: 1rem;
    margin-right: 4rem !important;
}