/**
* Author: Jonas Bertossa
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}
body {
    background: #000000;
    font-family: 'Rubik', sans-serif;
    color: #fff;
}
header {
    background-color: #ffffff;
    color: #000;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 30px;
    position: relative;
    z-index: 1;
}
.auth-form {
    background: rgba(0, 0, 0, 0.5);
    width: 500px;
    margin: 65px auto;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    box-shadow: 0 2px 25px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}
.auth-form h1 {
    padding: 35px 35px 0 35px;
    color: #fff;
}
.auth-form .content {
    padding: 35px;
    text-align: center;
}
.auth-form .input-field {
    padding: 12px 5px;
}
.auth-form .input-field input {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 10px 1px;
    border: 0;
    border-bottom: 1px solid #747474;
    outline: none;
    transition: all .2s;
    background: transparent;
    color: #fff;
}
.auth-form .input-field input:focus {
    border-color: #fff;
}
.error {
    border-bottom: 1px solid red !important;
    color: red;
}
.auth-form .action {
    display: flex;
    flex-direction: row;
}
.auth-form .action button {
    width: 100%;
    border: none;
    padding: 18px;
    cursor: pointer;
    background: #ffffff;
    color: #000000;
    border-radius: 4px;
    transition: all .3s;
    font-weight: bold;
    opacity: 1;
}

.auth-form .action button:hover {
    background: #999999;
}

.auth-form .action button.secondary {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.auth-form .action button.secondary:hover {
    background: #333333;
    border: 2px solid #333333;
}
.invisible {
    display: none !important;
}
.toggle-container {
    display: flex;
    margin-bottom: 15px;
}
.toggle-button {
    flex: 1;
    padding: 10px;
    border: none;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}
.toggle-button-left {
    border-left: 2px solid #ffffff;
}
.toggle-button-right {
    border-right: 2px solid #ffffff;
}
.toggle-button:hover {
    background-color: #ffffff;
    color: #000000;
}
.toggle-button.active {
    background-color: #ffffff;
    color: #000000;
}
.icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: middle;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}