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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #1a237e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wrapper {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.15);
}

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

.name {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 24px;
    line-height: 1.3;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}

.col-md-6 {
    width: 50%;
    padding: 0 6px;
}

.form-field {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.form-field:focus-within {
    border-color: #3949ab;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(57, 73, 171, 0.1);
}

.form-field span {
    color: #9ca3af;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.form-field:focus-within span {
    color: #3949ab;
}

.form-field input,
.form-field select {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    font-size: 0.9rem;
    color: #374151;
    padding: 12px 10px;
}

.form-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-field input::placeholder {
    color: #9ca3af;
}

.btn {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 10px;
    background: #1a237e;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.btn:hover {
    background: #3949ab;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.25);
}

.text-center {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #6b7280;
}

.text-center a {
    color: #3949ab;
    font-weight: 600;
    transition: color 0.2s;
}

.text-center a:hover {
    color: #1a237e;
}

@media (max-width: 768px) {
    .wrapper {
        max-width: 100%;
        padding: 32px 24px 28px;
    }

    .col-md-6 {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 24px 16px 20px;
    }
}
