﻿/* Reset and base layout */
body {
    background: linear-gradient(to bottom right, #e9e9ec, #d9d9dd);
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card layout */
.login-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 430px;
}

/* Top icon box (blue background with icon) */
.icon-box {
    background-color: #0056d2;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -10px;
}

/* Button */
.btn-primary {
    background-color: #0056d2;
    color: white;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .btn-primary:hover {
        background-color: #0041a8;
        transform: translateY(-1px);
    }

/* Form elements */
.input-group-text {
    background-color: #f1f1f1;
    border-right: none;
}

.form-control {
    border-left: none;
}

.input-group .form-control:focus {
    box-shadow: none;
    border-color: #0056d2;
}

.input-group .input-group-text {
    border-color: #ced4da;
}

/* Back link */
a.text-decoration-none:hover {
    text-decoration: underline;
}

/* Toast positioning */
.toast {
    z-index: 1055;
}
