/* Remove Edge's native show password icon */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}


.site-content{
    display: flex;
    flex-direction: column;
}
.ast-container{
   display: flex;
   flex-direction: column;
   flex-grow: 1;
   width:100%;
}

section.cws-login-section {
    display: grid;
    flex-grow: 1;
    padding: 15px;
    align-items: center;
}

.cws-login-wrapper {
    padding: 20px;
    box-shadow: 0px 0px 10px 0px #dbdbdb;
    border-radius: 10px;
    max-width: 480px;
    margin: auto;
    width: 100%;
}

.cws-login-wrapper h2 {
    text-align: center;
    margin-bottom: 20px;
}

form.cws-login-form {
    display: grid;
    gap: 20px;
}

.login-field {
    position: relative;
}

.login-field input {
    padding-right: 60px;
}

.login-field .icon {
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e8e8e;
}

.toggle-password {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
}

.field-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -10px;
}

label.cws-remember {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #262626;
}

.cws-remember input{
    vertical-align: middle;
    cursor: pointer;
}

.field-group a {
    font-size: 15px;
    color: #767676;
}

.field-group a:hover {
    color: black;
}

.cws-login-form button {
    margin-top: 15px;
}

p.cws-login-links {
    text-align: center;
    margin: 30px 0 0;
}

p.cws-error {
    margin: 15px 0;
    color: red;
}

p.cws-success {
    color: #5cb85c;
    margin: 15px 0;
}

.cws-reset-form button {
    padding: 10px;
    font-size: 16px;
    margin-top: 15px;
}

.cws-reset-form input[type="text"] {
    border-color: gainsboro;
}

p.cws-login-links.forget-form-links {
    text-align: center;
    margin: 30px -20px -20px;
    padding: 10px;
    border-top: 1px solid #e2e2e2;
    background: #f3f3f3;
    border-radius: 0 0 10px 10px;
}

.forget-form-links svg.bi.bi-arrow-left {
    vertical-align: middle;
    margin-right: 10px;
}