﻿.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f6f9;
    padding: 40px;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

    .login-logo img {
        width: 180px;
    }

.login-card h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        display: block;
    }

.form-control {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    padding: 10px 15px;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #001a4d;
    }

.btn-login {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: #001a4d;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
    transition: .3s;
}

    .btn-login:hover {
        background: #002d80;
    }

.link-register {
    display: block;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
    color: #001a4d;
    font-weight: 600;
}

.msg-login {
    margin-top: 15px;
    text-align: center;
    color: red;
    font-size: 14px;
}
