/* Body */
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #02040a;
    color: #f5f5f5;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #0a0f1c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.nav-left h1 {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-center {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    background: #1a2233;
    /* gri/albastru inchis */
    color: #f5f5f5;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: 0.2s;
}

.nav-btn:hover {
    background: #27314f;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Drop-down */
.nav-right {
    position: relative;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.g-recaptcha {
    display: flex;
    justify-content: space-evenly;
}

.dropbtn {
    padding: 0.6rem 1.2rem;
    background: #1a2233;
    color: #f5f5f5;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: 0.2s;
}

.dropbtn:hover {
    background: #27314f;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: #1a2233;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    min-width: 140px;
    z-index: 10;
}

.dropdown-content a {
    display: block;
    padding: 0.7rem 1rem;
    text-decoration: none;
    color: #f5f5f5;
    transition: 0.2s;
}

.dropdown-content a:hover {
    background: #27314f;
}

/* Show drop-down on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Main content */
.main-content {
    padding: 3rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.main-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: #4CAF50;
}

.main-content p {
    font-size: 1.1rem;
    color: #cfd8e3;
}

.main-content ul {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    background: #0a0f1c;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.main-content ul li {
    margin: 15px 0;
}

.main-content a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.2s;
}

.main-content a:hover {
    color: #66BB6A;
    text-decoration: underline;
}

/* Button principal */
.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.6rem;
    text-decoration: none;
    background: #1a2233;
    color: #f5f5f5;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: 0.2s;
}

.btn:hover {
    background: #27314f;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.center-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #02040a;
}

.login-box {
    background: #0a0f1c;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    width: 350px;
    text-align: center;
}

.login-box input,
.login-box textarea {
    width: 90%;
    padding: 0.6rem;
    margin: 0.5rem 0;
    border-radius: 6px;
    border: 1px solid #444;
    background: #1a2233;
    color: #f5f5f5;
}

.login-box textarea {
    resize: vertical;
}