*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f2f2f2;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}

.container{
text-align:center;
}

.logo-circle{
width:200px;
height:200px;
border-radius:50%;
background:white;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
box-shadow:0 10px 30px rgba(0,0,0,0.2);

overflow:hidden; /* evita que se vean las esquinas */
}

.logo-circle img{
width:100%;
height:100%;
object-fit:cover; /* recorta automáticamente */
}

h1{
margin-top:20px;
letter-spacing:4px;
color:#111;
}

.buttons{
margin-top:40px;
display:flex;
flex-direction:column;
gap:20px;
}

.btn{
padding:18px 40px;
font-size:18px;
border:none;
border-radius:40px;
background:black;
color:white;
cursor:pointer;
transition:0.3s;
}

.btn:hover{
transform:scale(1.05);
}

.btn.red{
background:#e10600;
}
input,
textarea,
select {
font-size: 16px;
padding: 10px;
width: 100%;
box-sizing: border-box;
}
