/* ========================================================
   LOGIN CSS - VINZZCLOUD
   ======================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #050510;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 400px;
    max-width: 90%;
    background: #10101c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    color: transparent;
}

.subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 25px;
    font-size: 13px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: #1b1b2b;
    color: white;
    font-size: 14px;
    outline: none;
}

.input-group input:focus {
    border-color: #38bdf8;
}

.login-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    margin-top: 10px;
    transition: opacity 0.2s;
}

.login-btn:hover {
    opacity: 0.9;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: #777;
    font-size: 13px;
}

.footer a {
    color: #06b6d4;
    text-decoration: none;
  }
