@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap')

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 

body{
    --primary: #200a77ba;

    font-family: "Inter", sans-serif;
    padding: 2rem;
    display: flex;
    justify-content: center;
    background-color:#faf8f1;
}
.auth {
    width: 550px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    border-radius: 12px;
    gap: 0.7rem;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.auth > * {
    flex: 1;
}
.left {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.left > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: white;
}
.left > div >p {
    font-size: 0.75rem;
}
.left > div > button{
    background-color: transparent;
    border: 1px solid white;
    color: white;
    width: fit-content;
    padding: 5px 12px;
    border-radius: 5px;
}

.right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}
.right p {
    font-size: 0.75rem;
    color: #555555;
}
.input-group {
    position: relative;
    width: 100%;
}
.input-group i {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}
.input-group input {
    padding:8px 10px;
    width: 100%;
    border: none;
    background-color: rgb(223, 222, 222);
}
.right button {
    padding: 8px 10px;
    width: 100%;
    text-transform: uppercase;
    border: none;
    font-weight: 500;
    color: white;
    border-radius: 10px;
    background: linear-gradient(90deg, black, var(--primary));
}
.socials {
    display: flex;
    gap: 0.5rem;
}
.socials > div {
    border: 1px solid gray;
    padding: 0.4rem;
    border-radius: 5px;
}