﻿:root {
    --brand: #2f6cf6;
    --bg: #f4f7ff;
    --border: #d9e5ff;
}

/* BACKGROUND */

body {
    background: radial-gradient(1200px 600px at 20% 10%, #ffffff 0%, var(--bg) 55%, #eef4ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui;
}

/* WRAPPER */

.login-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

/* CARD */

.login-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 18px 40px rgba(26,44,80,.12);
}

/* BADGE */

.login-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(40,92,255,.15);
    margin: auto;
    color: #4f46e599;
    font-size: 26px;
}

/* INPUT STYLE */

.input-style {
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

    .input-style .input-group-text {
        background: #f5f8ff;
        border: none;
        color: #6b7a95;
    }

    .input-style .form-control {
        border: none;
        box-shadow: none;
    }

/* BUTTON */

.btn-brand {
    background: #4f46e599;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    padding: 8px 27px;
}

    .btn-brand:hover {
        background: #4f46e599;
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(79,70,229,.25);
        color:#fff;
    }


/* FOOTER */

.footer-sec {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #9aa9c0;
}

/* PASSWORD ICON */

.password-toggle {
    cursor: pointer;
}
