/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #020b23;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 60px;

    background: rgba(5, 10, 25, .92);
    backdrop-filter: blur(10px);

    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: white;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo img {
    height: 38px;
    width: auto;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: .3s;
}

nav a:hover {
    color: #00d4ff;
}

/* LOGIN PAGE */

.login-page {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 120px 20px 40px;

    background:
        linear-gradient(rgba(5, 10, 25, .68),
            rgba(5, 10, 25, .75)),
        url("../image/command_1.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.login-card {
    width: 100%;
    max-width: 500px;

    background: rgba(17, 24, 39, .85);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    padding: 40px;
}

.login-card h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.login-card p {
    color: #9ca3af;
    margin-bottom: 30px;
}

.login-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-card input {
    height: 55px;
    background: #0f172a;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 0 15px;
    color: white;
    font-size: 16px;
}

.login-card input:focus {
    outline: none;
    border-color: #00d4ff;
}

.login-card button {
    height: 55px;
    border: none;
    border-radius: 12px;
    background: #00d4ff;
    color: black;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.login-card button:hover {
    background: #22ddff;
}

.login-links {
    margin-top: 20px;

    display: flex;
    justify-content: space-between;
}

.login-links a {
    color: #00d4ff;
    text-decoration: none;
    font-size: 14px;
}

.login-links a:hover {
    text-decoration: underline;
}
.success-box{
    background:rgba(25,135,84,.15);
    border:1px solid #198754;
    color:#d1e7dd;
    padding:15px;
    border-radius:10px;
    margin:20px 0;
    font-size:15px;
    line-height:1.5;
}
/* MOBILE */

@media(max-width:768px) {

    header {
        padding: 0 20px;
    }

    nav {
        gap: 20px;
    }

    nav a {
        font-size: 14px;
    }

    .logo span {
        display: none;
    }

    .login-card {
        padding: 30px;
    }

    .login-card h1 {
        font-size: 34px;
    }
}
