@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

.card-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    max-width: 900px;
    width: 100%;
}

.card-image {
    background: url('https://images.unsplash.com/photo-1585255318859-f5c15f4c49b2?q=80&w=1974&auto=format&fit=crop') center center/cover;
    width: 45%;
}

.card-form {
    padding: 3rem;
    width: 55%;
}

.card-form h2 {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.card-form p {
    color: #777;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: all 0.3s;
}

.form-control:focus {
    background-color: #fff;
    border-color: #667eea;
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-text {
    text-align: center;
    margin-top: 1.5rem;
}

.form-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}
