*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#0B0F1A;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
color:#fff;
}

.welcome{
text-align:center;
padding:25px;
width:100%;
max-width:400px;
}

.logo{
width:120px;
height:120px;
border-radius:50%;
background:#FFC107;
margin:0 auto 20px;
display:block;
}

h1{
font-size:40px;
font-weight:bold;
margin-bottom:10px;
color:#FFC107;
}

p{
color:#ccc;
margin-bottom:40px;
}

.buttons{
display:flex;
flex-direction:column;
gap:15px;
}

.btn{
padding:15px;
border-radius:12px;
text-decoration:none;
font-size:18px;
font-weight:bold;
text-align:center;
}

.login{
background:#00A898;
color:#fff;
}

.register{
background:#FFC107;
color:#000;
}