﻿.login-page {
    height: 100vh;
    display: flex;
    background: #eae9e9;
}
/*#1274AC*/
.login-page .login-wraper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
    max-width: 96%;
    z-index: 1;
    background: #ffffff;
    padding: 0 20px 20px;
    margin: auto;
    box-shadow: #64646f33 0 7px 29px;
    height: auto;
    min-width: auto;
}

.login-page .top-logo img {
        max-width: 200px;
    }

.login-wraper form {
    width: 300px;
    max-width: 100%;
}

.login-page .login-wraper label {
    font-size: 15px;
    color: #007bff;
    margin-bottom: 3px;
}

.login-page .login-wraper .form-control {
    border-color: rgba(0, 0, 0, 0.08);
    color: #424242;
    height: 40px;
}

.login-page .login-wraper .form-control:focus {
        border-color: rgba(0, 0, 0, 0.16);
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

.login-page .login-wraper .form-group {
    margin-bottom: 16px;
    position: relative;
}

.login-wraper form .btn {
    width: 100%;
    border-color: rgba(0, 0, 0, 0.08);
    background-color: #f5f5f5;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
    color: #424242;
    height: 30px;
    padding: 0 10px;
    margin-top: 20px;
    font-size: 14px;
}

.login-wraper form .btn:focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

.login-wraper form .btn:hover {
        background-color: #ebebeb;
    }

.bottom-logo img {
    max-width: 500px;
}

.login-wraper .toggle-password img {
    width: 16px;
    height: 25px;
}

.login-wraper .toggle-password {
    position: absolute;
    right: 10px;
    bottom: 8px;
    cursor: pointer;
}

.login-wraper .toggle-password .hide {
        display: none;
    }

.login-wraper .toggle-password.active .hide {
        display: block;
    }

.login-wraper .toggle-password.active .show {
        display: none;
    }

.bottom-logo {
    margin-top: 35px;
    margin-left: 50px;
}

body {
    background: linear-gradient(to bottom right, #f0f8ff, #cce0ff);
    background-image: url('~/assets/bg-mountain.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

.login-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 50px 40px;
    width: 380px;
    text-align: center;
}

.top-logo img {
    width: 90px;
    margin-bottom: 10px;
}

.title {
    font-size: 28px;
    font-weight: 700;
    color: #1274AC;
    margin-bottom: 30px;
}

.alert {
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #333;
}

.form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.btn-theme {
    background-color: #1274AC;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-theme:hover {
        background-color: #005fa3;
    }

@media (max-width: 480px) {
    .login-wrapper {
        width: 90%;
        padding: 30px 20px;
    }
}
