body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.signup-container, .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.signup-card, .login-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 30px 40px;
    max-width: 400px;
    text-align: center;
    width: 90%;
    transition: transform 0.3s;
}

.signup-card:hover, .login-card:hover {
    transform: translateY(-5px);
}

h1 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.8em;
}

p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-size: 1em;
}

input:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 8px rgba(106, 17, 203, 0.2);
    outline: none;
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s, box-shadow 0.3s;
}

button:hover {
    background: linear-gradient(to right, #4e0ba5, #2052d9);
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.3);
}

a {
    color: #6a11cb;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2575fc;
}
