@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #4f7cff;
    --primary-soft: #edf3ff;

    --secondary: #7b92ff;

    --bg: #f5f7ff;

    --white: #ffffff;

    --text: #1e293b;
    --text-light: #64748b;

    --border: #e2e8f0;

    --shadow:
        0 10px 30px rgba(79, 124, 255, 0.10);

    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg,
            #f5f7ff,
            #eef4ff);

    min-height: 100vh;
    color: var(--text);
}

/* LOGIN */

.login-wrapper {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 430px;

    background: rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.4);

    border-radius: var(--radius);

    padding: 35px 28px;

    box-shadow: var(--shadow);
}

.logo-circle {
    width: 75px;
    height: 75px;

    margin: auto;
    margin-bottom: 18px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 32px;

    box-shadow:
        0 10px 25px rgba(79, 124, 255, 0.3);
}

.login-title {
    font-size: 28px;
    font-weight: 700;

    margin-bottom: 6px;
}

.login-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

/* SWITCH */

.login-switch {
    background: var(--primary-soft);

    border-radius: 16px;

    padding: 6px;

    display: flex;
    gap: 6px;
}

.switch-btn {
    flex: 1;

    border: none;

    background: transparent;

    padding: 12px;

    border-radius: 12px;

    font-weight: 600;

    color: var(--text-light);

    transition: 0.3s;
}

.switch-btn.active {
    background: white;

    color: var(--primary);

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06);
}

/* INPUT */

.form-label {
    font-size: 14px;
    font-weight: 600;

    margin-bottom: 8px;
}

.custom-input-group {
    border-radius: 16px;
    overflow: hidden;

    border: 1px solid var(--border);

    background: white;
}

.input-group-text {
    border: none !important;
    background: white !important;

    color: var(--primary);

    padding-left: 18px;
}

.custom-input {
    border: none !important;

    height: 55px;

    font-size: 15px;

    box-shadow: none !important;
}

.custom-input::placeholder {
    color: #94a3b8;
}

/* BUTTON */

.btn-login {
    width: 100%;

    border: none;

    height: 56px;

    border-radius: 18px;

    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    color: white;

    font-weight: 600;

    font-size: 15px;

    transition: 0.3s;

    box-shadow:
        0 10px 25px rgba(79, 124, 255, 0.25);
}

.btn-login:hover {
    transform: translateY(-2px);
}

/* MOBILE */

@media(max-width:576px) {

    .login-card {
        padding: 30px 22px;
    }

    .login-title {
        font-size: 24px;
    }

}