@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #ffffff, #f8f9ff);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:
    linear-gradient(
            rgba(255,255,255,0.85),
            rgba(255,255,255,0.85)
    ),
    url("img/background.jpeg");
}

.welcome-first{
    font-family: 'Archivo', sans-serif;
    font-size: 60px;
    font-weight: 800;
    background: linear-gradient(135deg,#373394,#6d63ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    margin-top: 80px;
}

.welcome-image{
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 15px;
}

.welcome-image img{
    width: 300px;
    height: auto;
}

.register-card{
    width: 450px;
    background: white;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.register-card h3{
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    color: #373394;
    margin-bottom: 10px;
}

.register-card p{
    color: #666;
}

.register-card a{
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

form{
    width: 450px;
    background: white;
    padding: 30px;
    margin-top: 20px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
}

form label{
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 15px;
    color: #333;
}

form input{
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: .3s;
}

form input:focus{
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 10px rgba(79,70,229,.15);
}

form button{
    margin-top: 25px;
    padding: 15px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        #4f46e5,
        #7c73ff
    );
    color: white;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

form button:hover{
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .welcome-first { font-size: 40px; }
    .register-card { width: 90%; }
    form { width: 90%; }
}

@media (max-width: 480px) {
    .welcome-first { font-size: 28px; }
    .welcome-image img { width: 200px; }
}