﻿/* ===============================
   Change Password Page Styles
================================ */
body {
    background: url('../Images/Background_2.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Background overlay text */
.bg-text {
    position: absolute;
    top: 350px;
    left: 280px;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none; /* text behind login form */
    max-height: auto;
}

    .bg-text .smollan {
        font-size: 60px;
        color: white;
        font-weight: 700;
    }

    .bg-text .welcome {
        font-size: 50px;
        color: #00b7ff;
        margin-top: 100px;
        font-weight: 500;
        text-align: left;
    }

    .bg-text .audit {
        font-size: 22px;
        color: white;
        margin-top: 10px;
        margin-left: 0px;
        font-weight: 600;
        text-align: left;
    }

    .bg-text .footer {
        font-size: 18px;
        color: white;
        margin-top: 05px;
        font-weight: 600;
        text-align: left;
    }

/* Center container */
.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1; /* above bg-text */
}

/* Login card */
.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

    /* Title */
    .card h3 {
        font-weight: 700;
        letter-spacing: 1px;
        color: #333;
    }

.form-control {
    border-radius: 15px;
    border: 1px solid #ccc;
    padding: 12px 15px;
    font-size: 16px;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 5px rgba(78, 115, 223, 0.5);
    }

.btn-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #4e73df, #224abe);
    color: white !important;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #224abe, #4e73df);
        transform: scale(1.05);
    }

.btn-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white !important;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
}

    .btn-warning:hover {
        background: linear-gradient(135deg, #e67e22, #d35400);
        transform: scale(1.05);
    }

.text-danger {
    font-size: 14px;
    margin-top: 5px;
}

.text-decoration-none {
    color: #4e73df;
    font-size: 14px;
}

    .text-decoration-none:hover {
        text-decoration: underline;
        color: #224abe;
    }

