/* https://flatuicolors.com/palette/tr */

html, body {
    min-height: 650px;
    min-width: 320px;
    margin: 0; 
    padding: 0;
    text-align: center;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(45deg, rgba(66, 180, 250, 0.5) 0%, rgba(60, 250, 200, 0.5) 100%);
}

.center {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

* {
    color: #000;
}

h1 {
    font-size: 1.75rem;
    margin-bottom: 50px;
}

p {
    margin: 0;
    padding: 0;
    color: #4285F4;
}

.content {
    width: 90%;
    max-width: 800px;
    padding: 50px 0px;
    text-align: center;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0px 15px 15px 0.15px rgba(0, 0, 0, 0.05);
}

.switch-toggle {
    text-align: center;
    padding: 30px; 
    border-radius: 20px; 
    margin: auto; 
    width: 60%;
}

.switch-toggle input {
    position: absolute;
    opacity: 0;
}

.switch-toggle input + label {
    padding: 15px;
    border-radius: 25px; 
    cursor: pointer;
    white-space: nowrap;
}

.switch-toggle input:checked + label {
    background: #4285F4;
    color: #fff;
    transition: all .4s ease;
}

input, button {
    font-size: 14px;
}

input[usage=logininput] {
    text-align: center;
    width: 60%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #999;
    background: #f8f8f8;
    margin: auto;
    margin-bottom: 25px;
}

input[usage=logininput]:focus {

    background: rgba(0, 0, 0, 0.1);
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 12px 20px;
    color: rgba(0, 0, 0, 0.5);
    outline: none;
    transition: 0.3s ease;
}

::placeholder {
    color: #000;
    opacity: 0.7;
}

input:focus::placeholder {
    color: transparent;
}

button {
    
    align-items: center;

    background-color: #4285F4;
    color: #fff;
    border: 0px;
    border-radius: 5px;
    cursor: pointer;

    height: 50px;
    width: calc((60% - 50px) / 2);
    margin: 25px 0px 15px 0px;

    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;

}

button[name=resetpw] {
    margin: 20px;
}

button[name=backbtn] {
    margin-top: 50px;
}

::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    position: absolute;
    right: 0;
}

.resetpwtxt {
    text-decoration: none;
    color: #4285F4;
    margin-top: 10px;
}

.resetpwtxt b {
    display: block;
    color: #000;
    margin-top: 10px;
}