* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #f4f7fe;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 420px;
}

.card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.05);
}

.banner-box {
    width: 100%;
    height: 180px;
    background: #eef2ff;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding: 30px 25px;
    text-align: center;
}

.brand {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
}

.brand span {
    color: #0066ff;
}

.tagline {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 30px;
}

.form-group {
    text-align: left;
    margin-bottom: 18px;
}

label {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    display: block;
    padding-left: 5px;
}

input, select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 15px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    font-size: 14px;
    transition: 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: #0066ff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.05);
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background: #0066ff;
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
    margin-top: 10px;
}

.footer {
    margin-top: 30px;
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.6;
}
