* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    overflow: hidden;
    font-family: poppins;
}

.container {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    padding: 16px;
    -webkit-backdrop-filter: blur(5px);
}

.form-area {
    width: 100%;
    max-width: 500px;
    min-height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.form-area form {
    max-width: 460px;
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.logo {
    width: 40%;
    margin: 0 auto;
}

.form-area h3 {
    text-align: center;
    font-size: 28px;
    font-family: sans-serif;
    color: rgb(29, 17, 85);
    font-weight: 900;
    font-size: clamp(24px, 4vw, 20px);
}

.input-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-field label {
    color: rgb(29, 17, 85);
    font-weight: 600;
}

.input-field input {
    padding: 12px 16px;
    border: 1px solid #1d1155;
    border-radius: 4px;
    background-color: transparent;
    color: rgb(29, 17, 85);
}

.btn {
    background: rgb(255, 1, 229);
    background: linear-gradient(120deg, rgba(255, 1, 229, 1) 0%, rgba(118, 0, 195, 1) 50%, rgba(29, 17, 85, 1) 100%);
    border: none;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 12px 16px;
    color: white;
    font-weight: 600;
}

.btn:hover {
    background: linear-gradient(240deg, rgba(255, 1, 229, 1) 0%, rgba(118, 0, 195, 1) 50%, rgba(29, 17, 85, 1) 100%);
}

.form-area input:focus {
    outline: 1px solid #7600C3;
}

.form-area p {
    color: #454545;
    text-align: center;
    font-size: clamp(12px, 2vw, 16px);
}

.form-area p a {
    color: #1d1155;
    text-align: center;
    font-size: clamp(12px, 2vw, 16px);
    text-decoration: none;
}

.form-area p a:hover {
    color: #7600C3;
    text-decoration: none;
}

.forgot {
    align-self: self-end;
    margin-top: 2px;
    text-decoration: none;
    color: #1d1155;
}

.forgot:hover {
    color: #7600C3;
}

.info-area {
    width: 100%;
    background: rgba(29, 17, 85, 0.5);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.password-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.password-field button {
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.password-field button i {
    font-size: 18px;
    color: #1d1155;
}

.password-field button i:hover {
    color: #7600C3;
}

@media only screen and (max-width: 810px) {
    .form-area {
        padding: 14px 18px;
    }
}

.trail {
    position: absolute;
    z-index: 0;
    height: 600px;
    top: 0;
}

.login-form {
    background-color: white;
    padding: 20px;
    position: relative;
    z-index: 1;
    margin-top: 15px;
    border-radius: 13px !important;
}

.login-form img {
    width: 180px;
}

.login-error {
    max-width: 400px;
    border-radius: 8px;
    border: 1px solid rgba(222, 63, 68, 0.60);
    background: #FFF;
    box-shadow: 0px 6px 12px 0px rgba(140, 152, 164, 0.08);
    position: relative;
    top: 15px;
    display: none;
    z-index: 10;
}

.login-form-div {
    background-color: transparent;
}

.logo-login-form {
}

.login-form input {
    background: #fdfdfd;
    width: 100%;
    height: 18%;
    border: 1px solid #bdbdbd;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 15px;
    border-radius: 10px;
}

.login-form .sub {
    text-transform: uppercase;
    background: #1e3145;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    -moz-transition: all 0.3 ease;
    -o-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
    border-radius: 0;
    border-radius: 5px;
}

.login-form .sub:hover,
.login-form .sub:active,
.login-form .sub:focus {
    background: #fff;
    color: #1e3145;
    border: 1px solid #1e3145;
}

.fpass-link {
    color: #666666;
    font-size: 15px;
}

.fpass-success {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.login-link {
    color: white;
    font-size: 15px;
}

.alert-fpass {
    border-radius: 2px;
    background-color: #d5ebcc;
}

.alert-fpass>.alert-note {
    top: 32px;
    position: absolute;
    font-size: 17px;
    color: white;
    left: 32px;
}

.note-message {
    font-size: 14px;
    vertical-align: middle;
}

.alert-title {
    color: #DE3F44;
    font-size: 12px;
    font-weight: 600;
}

.error-list {
    font-size: 11px;
}


