#auth {
    margin: 0 auto 80px;
    width: fit-content;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
}
#auth .table tbody {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#auth .table {
    margin: 0 auto;
}
#auth .table .or {
    margin: -10px 0;
    display: flex;
    justify-content: center;
}
#auth a {
    color: #03969d;
}
#auth input[type="text"], #auth input[type="password"] {
    width: 295px;
    height: 36px;
    padding: 0 10px 0 50px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1;
    color: #000;
    background-color: #EDEDED;
    border-color: transparent;
    font-weight: 600;
}
#auth .table.v3 input[type="text"], #auth .table.v3 input[type="password"] {
    padding-left: 20px;
}
#auth input[type="text"], #auth input[type="password"] {
    outline-color: #83749F;
}
#auth input[type="submit"] {
    width: 295px;
    padding: 0;
    background-color: #03969D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 36px;
    outline: none;
	color: #fff;
    border: none;
	transition: .2s;
}
#auth input[type="submit"]:hover {
    background-color: #035c58;
}
#auth .xsuc {
    padding: 10px 20px;
    background-color: limegreen;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
}