@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
    background-color: rgb(222, 247, 255);
}

input[type=text], input[type=password], input[type=email], input[type=number] {
    box-shadow: rgba(255, 255, 255, 0.25) 0px 14px 28px, rgba(160, 160, 160, 0.22) 0px 10px 10px;
    background-color: #e3fffe;
    padding: 12px;
    border: 0px;
    border-radius: 4px;
    color: rgb(53, 53, 53);
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    width: 300px;
    margin-bottom: 0px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

button, input[type=submit], input[type=file] {
    box-shadow: rgba(255, 255, 255, 0.25) 0px 14px 28px, rgba(160, 160, 160, 0.22) 0px 10px 10px;
    background-color: #e3fffe;
    border: 0px;
    color: rgb(53, 53, 53);
    padding: 12px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    white-space: nowrap;
}

.separator {
    width: 1px;
    background-color: rgb(204, 198, 198);
}

img {
    width: 192px;
    border-radius: 8px;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 14px 28px, rgba(160, 160, 160, 0.22) 0px 10px 10px;
}

p, a {
    margin: 18px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: rgb(53, 53, 53);
    text-align: center;
}

.container {
    box-shadow: rgba(255, 255, 255, 0.25) 0px 14px 28px, rgba(160, 160, 160, 0.22) 0px 10px 10px;
    display: flex;
    gap: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(215, 245, 245);
    border-radius: 16px;
    padding: 48px;
    align-items: center;
    justify-content: center;
}

.right {
    display: flex;
    flex-direction: column;
    width: 300px;
    align-items: center;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_buttons {
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
    width: 200px;
}