@font-face {
    font-family: 'Outfit';
    src: url('./outfit-variable.ttf') format('truetype');
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #7e7e7e;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

body.accountpage {
    background: #ffffff;
    min-height: 600px;
    padding: 20px;
    box-sizing: border-box;
}

div#loginpane {
    padding: 100px 98px;
    background: #ffffff;
    border-radius: 22px;
    width: 305px;
    display: flex;
    flex-direction: column;
    row-gap: 52px;
    align-items: center;
    box-shadow: 1px 1px 98px 0px rgba(0, 0, 0, 0.15), 1px 1px 40px 0px rgba(0, 0, 0, 0.06), 1px 1px 8px 0px rgba(0, 0, 0, 0.07);
}
form#loginform {
    width: 100%;
}
#loginpane h1 {
    display: flex;
    font-size: 25px;
    justify-content: center;
}

#loginform input#email, #loginform input#current-password {
    padding: 17px 20px;
    font-size: inherit;
    font-family: inherit;
    border: none;
    margin-bottom: 14px;
    background: #efefef;
    border-radius: 10px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

#loginform label {
    font-size: 14px;
}

#loginform input#login {
    background: #f4763e;
    color: #fff;
    padding: 17px 20px;
    font-size: inherit;
    font-family: inherit;
    font-weight: 600;
    display: block;
    width: 100%;
    border: none;
    border-radius: 10px;
    margin-top: 32px;
    cursor: pointer;
    transition: background 0.2s;
}

#loginform input#login:hover {
    background: #bd562a;
}

#loginpane img#logo {
    width: 136px;
}


div#authprocpane {
    padding: 100px;
    background: #ffffff;
    border-radius: 22px;
    width: 340px;
    display: flex;
    flex-direction: column;
    row-gap: 0px;
    align-items: center;
    box-shadow: 1px 1px 98px 0px rgba(0, 0, 0, 0.15), 1px 1px 40px 0px rgba(0, 0, 0, 0.06), 1px 1px 8px 0px rgba(0, 0, 0, 0.07);
}

button#approval-continue-btn, button.approval-secondary-btn {
    padding: 17px 20px;
    width: 100%;
    max-width: 500px;
    border: none;
    font-size: inherit;
    cursor: pointer;
    font-family: inherit;
    background: transparent;
    white-space: nowrap;
    text-overflow: ellipsis;
}

button.approval-secondary-btn {
    color: #585858;
    transition: color 0.2s;
}

button.approval-secondary-btn:hover {
    color: #000;
}

button#approval-continue-btn {
    background: #f4763e;
    color: #fff;
    border-radius: 10px;
    transition: background 0.2s;
}

button#approval-continue-btn:hover {
    background: #bd562a;
}

#authprocpane h1 {
    font-size: 24px;
}

#authprocpane p {
    font-size: 14px;
    margin-bottom: 30px;
    color: #666;
}


#accountpane h1 {
    margin-bottom: 0px;
    font-size: 20px;
    color: #f4763e;
}

#accountpane h2 {
    color: #000000;
    margin-top: 5px;
    font-size: 28px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 17px;
}

#accountpane .account-email-info {
    color: #575757;
    font-size: 17px;
    margin-bottom: 20px;
}

.directory {
    margin-top: 30px;
}

a.directory-item {
    display: block;
    padding: 15px 20px;
    background: #eee;
    color: #333;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 12px;
    font-weight: 500;
    transition: background 0.2s;
}

a.directory-item:hover {
    background: #ddd;
}

div#accountpane {
    width: 100%;
    max-width: 433px;
}

#signout {
    background: #f9756c;
    border: none;
    padding: 10px 26px;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 26px;
}

#signout:hover {
    background: #b85048;
}

#signoutall {
    background: transparent;
    border: none;
    padding: 10px 0px;
    color: #f9756c;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;   
    outline: none;
    cursor: pointer;
    transition: color 0.2s;
}

#signoutall:hover {
    color: #b85048;
}

div#signoutsec {
    margin-top: 36px;
}

a.account-page-link {
    color: #222222;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    border-bottom: 1px solid #222222;
    margin-right: 10px;
}

.settings-cont {
    margin-top: 30px;
}

.settings-sec-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 9px;
    color: #000;
    display: inline-block;
}

.settings-cont input#name {
    display: block;
    padding: 12px 20px;
    background: #eee;
    color: #333;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 12px;
    font-weight: 400;
    transition: background 0.2s;
    border: 1px solid transparent;
    outline: none;
    font-size: inherit;
    font-family: inherit;
}

.settings-cont input#name:focus {
    border: 1px solid #c0c0c0;
}

.settings-cont button#password-btn {
    display: block;
    padding: 12px 20px;
    background: #f4763e;
    color: #fff;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 12px;
    font-weight: 500;
    transition: background 0.2s;
    border: none;
    outline: none;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
}

.settings-cont button#password-btn:hover {
    background: #bd562a;
}

.settings-cont #language {
    display: block;
    padding: 12px 20px;
    background: #eee;
    color: #333;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 12px;
    font-weight: 400;
    transition: background 0.2s;
    border: 1px solid transparent;
    outline: none;
    font-size: inherit;
    font-family: inherit;
}

.settings-cont .unsaved-change-indicator {
    background-color: #ffd298;
    color: #a17945;
    font-size: 14px;
    margin-top: 10px;
    padding: 3px 10px;
    border-radius: 7px;
    margin-left: 9px;
}

.settings-cont .unsaved-change-indicator.saving {
    background-color: #ff857c;
    color: #fff;
}



input#oldpassword, #newpassword, #confirmnewpassword {
    display: block;
    padding: 12px 20px;
    background: #eee;
    color: #333;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 12px;
    font-weight: 400;
    transition: background 0.2s;
    border: 1px solid transparent;
    outline: none;
    font-size: inherit;
    font-family: inherit;
}

input#confirmnewpassword {
    margin-bottom: 60px;
}

.password-requirements {
    margin-bottom: 20px;
    color: #666;
}
    

@media (max-width: 540px) {

    body {
        background: #ffffff;
    }

    div#loginpane {
        padding: 40px;
        border-radius: 0;
        width: 100%;
        background: transparent;
        box-shadow: none;
    }

    div#authprocpane {
        padding: 40px;
        border-radius: 0;
        width: 100%;
        background: transparent;
        box-shadow: none;
    }

}