﻿body {
}
:root {
    --primary: #1da1f2;
    --soft: #eaf4ff;
    --bg: #f7fbff;
    --text: #2c3e50;
}

body {
    background: var(--bg);
    font-family: 'Segoe UI', system-ui;
    color: var(--text);
}

.card-ui {
    border-radius: 18px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #eef3f9;
}

.topbar img {
    width: 150px; 
    height: 60px; 
    object-fit: contain; 
}

.title {
    font-weight: 600;
}

.subtitle {
    color: #7b8a9a;
    font-size: .95rem;
}

.form-label {
    font-weight: 500;
    color: #5a6b7c;
}

.form-control, .form-select {
    border-radius: 12px !important;
    border: 1px solid #dbe7f3;
    background: #f9fcff;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(29,161,242,0.15);
    }

.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
}

    .btn-primary:hover {
        background: #0d8fe0;
    }

.field {
    position: relative;
}

    .field i {
        position: absolute;
        left: 12px;
        top: 75%;
        transform: translateY(-50%);
        color: #9bb8d3;
    }

    .field input, .field select {
        padding-left: 38px;
    }

.helper {
    font-size: .85rem;
    color: #90a4b5;
}

.divider {
    height: 1px;
    background: #eef3f9;
}

.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #9bb8d3;
    }

    .input-icon input,
    .input-icon select {
        padding-left: 38px;
    }

.logo {
    height: 60px;
}

.link-register {
    margin-left: 5px;
    color: #185FA5;
    font-weight: 600;
    text-decoration: none;
}

    .link-register:hover {
        text-decoration: underline;
    }