﻿.account-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.account-form-container {
    background: none;
    max-width: 360px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.account-title {
    color: #0096c7;
    margin-bottom: 20px;
}

.account-input {
    font-family: "Roboto", sans-serif;
    background: #f2f2f2;
    width: 100%;
    border: 1px solid #0096c7;
    margin: 0 0 10px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
    opacity:80%;
}

.account-checkbox {
    display: flex;
    align-items: center;
    margin: 5px 0 15px;
}

    .account-checkbox input {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .account-checkbox label {
        font-size: 16px;
        color: #0096c7;
        line-height: 20px;
        padding-left: 10px;
        user-select: none;
    }

.account-button {
    font-family: "Roboto", sans-serif;
    background: #0096c7;
    width: 100%;
    border: none;
    padding: 15px;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    opacity:80%;
    border-radius:0.2rem;
}

    .account-button:hover {
        background: #0553B1;
    }

.account-checkbox input,
.account-checkbox label {
    margin: 0;
}
