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

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form,
.signup {
    height: 410px;
    width: 350px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
h2{
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}
label{
    color: #34495e;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}
input{
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    outline: none;
    border: 2px solid #e0e6ed;
    background-color: #f8f9fa;
    font-size: 14px;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #667eea;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
button{
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    outline: none;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
a{
    text-decoration: none;
    color: white;
}
#footer{
    text-align: center;
    font-size: 14px;
    color: #666;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
}
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
foo

button:active {
    transform: translateY(0);
}
