﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(300deg, #61cbac 0%, #388bbc 100%);
    font-family: 'Segoe UI';
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 25px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 8px 32px rgba(0,0,0,.30);
    color: white;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

    .logo h1 {
        font-size: 30px;
        font-weight: 700;
    }

    .logo p {
        opacity: .7;
    }

.form-control {
    background: rgba(255,255,255,.08);
    border: none;
    color: white;
    padding: 14px;
    border-radius: 12px;
}

    .form-control:focus {
        background: rgba(255,255,255,.15);
        color: white;
        box-shadow: none;
        border: 1px solid rgba(255,255,255,.3);
    }

    .form-control::placeholder {
        color: #ddd;
    }

.btn-login {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(90deg, #359995, #3cb0aa);
    color: white;
    font-weight: 600;
    transition: .3s;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px #1B4332;
    }

.text-danger {
    font-size: 14px;
}

.alert {
    border-radius: 12px;
}

.buttonG {
    background-color: #8ec3ad;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    width: 100px;
    height: 45px;
    transition: 0.3s;
    /* font-weight: 400;*/
}

    .buttonG:hover {
        background-color: #386f58;
        box-shadow: 0 0 0 5px #386f585f;
        color: #fff;
    }
