@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

body{
    font-family: Arial;
    background: #bfbf6a
}

.contenedor{
    width: 350px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

input, select{
    width: 95%;
    padding: 10px;
    margin-top: 10px;
}

.form{
    margin: 0 0 30px;
    display: grid;
    gap: 18px;
}

button{
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: #23446d;
    color: white;
    border: none;
}

.circle{
    position: fixed;
    top: -50vmin;
    left: -50vmin;
    width: 100vmin;
    height: 100vmin;
    border-radius: 47% 53% 61% 39% / 45% 51% 49% 55%;
    background: #b17122;
}

.circle::after{
    content: "";
    position: inherit;
    right: -50vmin;
    bottom: -55vmin;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    background: #6f0a42;
}

.contenedor .logo{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    height: 64px;
    width: 64px;
    top: 30px;
    left: 50%;
    translate: -50% 0;
}

.contenedor .logo i{
    font-size: 50px;
    color: #216ce7;
    font-weight: 500;
}