#root > div {
    padding: 20px;
}
#root > div > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
#root > div > div > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #19232d;
    padding: 70px 40px 36px 40px;
    border-radius: 8px;
    width: 370px;
}
#root > div > div > div >  form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#root > div > div > div > form > p:first-child {
    color: white;
    font-size: 26px;
    font-weight: 600;
}
#root > div > div > div > form > p:nth-child(2) {
    color: white;
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    margin-top: 13px;
}
#root > div > div > div > form > p:nth-child(2) > span {
    color: rgb(4 213 119);
}
#root > div > div > div > form > hr {
    margin: 20px 0px;
    width: 100%;
    height: 1px;
    border-style: none;
    background-color: #404d5f;
}
#root > div > div > div > form > div > p {
    color: white;
    font-size: 500;
    font-size: 15px;
}
#root > div > div > div > form > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    margin-top: 13px;
    width: 100%;
}
#root > div > div > div > form > div > input {
    width: calc(100% - 15px* 2);
    padding: 11px 15px;
    border-radius: 8px;
    border-style: none;
    background-color: #121b23;
    outline: none;
    color: white;
    width: 100%;
}
#root > div > div > div > form > input {
    border-style: none;
    border-radius: 8px;
    margin-top: 30px;
    background: rgb(4 213 119);
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s linear;
}
#root > div > div > div > button#google{
    margin: 20px 0;
    border: 1.5px solid #167148;
    padding: 10px 20px;
    width: 100%;
    border-radius: 8px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 36px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s ease;
}
#root > div > div > div > button#google:hover {
    background-color: #167148;
}