/*
ARGON Stylesheets
Author: Mveng Engineering
 */


/* General */

html, body {
    height: 100%
}

a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 13px;
    transition: color .3s;
}

a:hover {
    color: #2a2a2a;
}

button, .btn, .btn-primary {
    margin: 0;
    border: solid 1px #ccc;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background-color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    transition: all .3s;
}

button:hover, .btn:hover, .btn-primary:hover {
    background-color: #38c172;
    color: #fff;
    border-color: #38c172;
}

.logo {
    height: 32px;
}



/* Login Page */

.login div.background {
    background-image: url('../assets/img/login_bg.jpg');
}

.login div.columns {
    height: 100%;
}

.login div.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login div.form div.container {
    width: 50%;
}

.login div.logo img {
    height: 35px;
}

form div.input, .register form select, .login form select {
    margin: 10px 0;
}

form input, form div.input input {
    width: 100%;
    border-radius: 0;
    border-color: #ddd;
    font-size: 14px;
}

form select {
    width: 100%;
    border-radius: 0;
    border-color: #ddd;
    font-size: 14px;
}

.login form {
    margin-top: 10%;
}

.login form div.buttons div.columns {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login form div.buttons div.columns.submit {
    flex-direction: row;
    justify-content: flex-end;
}

.login div.contact {
    margin-top: 5%;
    text-align: center;
}

.login div.contact p {
    font-size: 15px;
}


/* Register */

.register div.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.register form {
    margin: 0;
}

.register div.message {
    position: relative;
    margin: 30px 0 60px 0;
}

.register div.message::after {
    content: "";
    position: absolute;
    bottom: -20px;
    width: 20%;
    height: 3px;
    background-color: #333;
}

.register div.message h4 {
    margin: 0;
}

.register div.status {
    margin: 10px 0;
}

.register div.buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 20px;
}


/* Dashboard */

