@import url('https://fonts.googleapis.com/css?family=Righteous|Roboto&display=swap');
:root {
    --primary-color: #5150FE;
    --secondary-color: #343866;
    --text-color: #ffffff;
    --secondary-text-color: #ffffff;
    --quote-color: #bbbbbb;
    --bg-color: #1E2E3D;
    --label-color: #696868;
    --border-color: #2e2d2d;
    --box-shadow: none;
}


/* Hero Section */

.register-textarea {
    width: 100%;
    border: .3px solid var(--border-color);
    text-indent: 20px;
    outline: none;
    margin-top: 2px;
    background: #1e2e3d;
    color: var(--text-color);
}

section#hero {
    margin: 4rem 0;
}

.container {
    padding: 0 2rem;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
}


/* Quote */

.quote-wrap p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quote-wrap em {
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--secondary-text-color);
}


/* Input */

.login-wrap-box {
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    border-radius: 5px;
    background: var(--secondary-color);
}

.register-wrap-box {
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    border-radius: 5px;
    background: var(--secondary-color);
}

.login-title h3 {
    font-size: 1.5rem;
}

.login-title p {
    margin-bottom: 2rem;
    font-weight: bold;
    color: var(--secondary-text-color);
}

form p {
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: .9rem;
    color: var(--label-color);
}

form input {
    width: 100%;
    height: 2.5rem;
    border: .3px solid var(--border-color);
    text-indent: 10px;
    outline: none;
    margin-top: 2px;
    background: var(--bg-color);
    color: var(--text-color);
}

form .d-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-weight: bold;
    font-size: .9rem;
    color: var(--label-color);
}

form .d-flex a {
    text-decoration: none;
    font-size: 12px;
    color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: #fff;
    border-radius: 1.3rem;
    border: none;
    cursor: pointer;
}

.not-regis {
    margin-top: 2rem;
    font-weight: bold;
    font-size: .85rem;
    color: var(--secondary-text-color);
}

.not-regis a {
    color: var(--primary-color);
}

.custom-text {
    color: #aaa !important;
}

#custom-button {
    padding: 10px;
    color: white;
    background-color: #009578;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
}

#custom-button:hover {
    background-color: #00b28f;
}

#custom-text {
    margin-left: 10px;
    font-family: sans-serif;
    color: #aaa !important;
}


/* Desktop Size */

@media (min-width: 700px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .theme-switch-wrapper {
        margin-top: 0;
    }
    .hero-wrap {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    .quote-wrap p {
        font-size: 1.3rem;
    }
    .login-wrap-box {
        max-width: 25rem;
        align-self: flex-end;
        margin-left: auto;
    }
    .register-wrap-box {
        align-self: flex-end;
        margin-left: auto;
    }
}