@import "fonts.css";
@import "alert.css";
@import "colors.css";

body {
    background-color: var(--backgroundColor);
    width: 100%;
    height: 100%;
    font-family: var(--main-font);
}

.login-logo {
    margin-top: 38px;
    margin-left: 20px;
}
.login-sidebar {
    background-color: var(--mainColor);
    height: 100%;
    border-radius: 10px;
    padding: 50px;
    box-sizing: border-box;
}
.tk-login-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.tk-login-form-wrapper {
    border-radius: 15px;
    background-color: white;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px;
}
    .tk-form-header {
        background-image: url(../images/login-img.png);
        width: 100%;
        height: 108px;
        background-color: #31393a;
        background-size: 33%;
        background-repeat: no-repeat;
        background-position: 89% 99%;
        -webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .tk-form-content {
        padding: 50px 70px;
        border-radius: 5px;
        background-color: white;
        margin: 0 auto;
    }
input.uk-input {
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding: 0;
}
label {
    font-family: var(--main-font);
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    margin-top: 33px;
    display: block;
}
button.register {
    background-color: #ffffff;
    color: #66c3ce;
    border: 2px solid #66c3ce;
}
button[type="submit"], a.register:hover button {
    background-color: var(--mainColor);
    padding: 5px 30px 5px;
    -webkit-box-shadow: 0px 0px 0px -18px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 0px -18px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 0px -18px rgba(0,0,0,0.6);
    color: #fff;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    display: table;
    vertical-align: middle;
    transition: all 0.3s;
    font-weight: 500;
    text-transform: none;
    float: right;
}

button[type="submit"]:hover, a.register button {
    color: #333;
    border: solid 1px;
    border-color: #b2b2b2;
    background-color: var(--white);
    padding: 5px 30px 5px;
    -webkit-box-shadow: 0px 0px 0px -18px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 0px -18px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 0px -18px rgba(0,0,0,0.6);
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    display: table;
    vertical-align: middle;
    transition: all 0.3s;
    font-weight: 500;
    text-transform: none;
}

a.register {
    text-decoration: none;
    float: right;
}

.uk-alert-primary {
    background: #fff;
    border-radius: 5px;
    color: var(--mainColor);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.disclaimer {
    text-align: center;
    padding: 25px;
}
.disclaimer p {
    color: #c7d2d7;
}