﻿/*
    CSS classes used throughout the site
*/

html, body {
    margin: 0;
    padding: 0;
}

.account-card {
    width: 80%;
    max-width: 600px;
    padding: 25px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.err-text {
    color: red;
}

.account-field {
    margin-top: 15px;
    margin-bottom: 15px;
}

.mtop {
    margin-top: 15px;
}

.link {
    color: #007f87;
}

.btn-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}

.loader {
    margin-left: 8px;
    border: 3px solid rgba(255, 255, 255, 0.20);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}