﻿body {
    background-color: #D1F8EF;
    display: flex;
    justify-content: center;
    align-items-center;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

.login-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .login-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }
.img-cont {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.h1 {
    color: #a62621;
    font-weight: bold;
    font-size: 1.5rem;
}

.erc {
    color: #a62621;
}
.form-control {
    border: 1px solid #A1E3F9;
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus {
        border-color: #3674B5;
        box-shadow: 0 0 8px rgba(54, 116, 181, 0.3);
        outline: none;
    }

.input-group-text {
    background-color: #A1E3F9;
    border: 1px solid #A1E3F9;
    color: #3674B5;
    border-radius: 8px 0 0 8px;
}

.toggle-password {
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

.btn-primary {
    background-color: #3674B5;
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .btn-primary:hover {
        background-color: #578FCA;
    }

    .btn-primary:active {
        transform: scale(0.98);
    }

.form-label {
    color: #3674B5;
    font-weight: 500;
}
