/* Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: #fff;
}

/* Container for logo + login */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-wrap: wrap;
}

/* Logo section */
.logo-section {
    flex: 1 1 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo {
    max-width: 50vw;
    height: auto;
}

/* Login box */
.login-container {
    background-color: #111;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    width: 300px;
    margin: 0 2vh 0 0;
}

.login-container h1 {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Inputs */
form input[type="email"],
form input[type="password"],
form input[type="text"]{
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border-radius: 8px;
    border: none;
    background-color: #222;
    color: #fff;
    font-size: 14px;
}

form input::placeholder {
    color: #aaa;
}

/* PIN radio buttons */
.type {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.type label {
    font-size: 14px;
    color: #bbb;
    display: flex;
    align-items: center;
}

.type input {
    margin-right: 6px;
}

/* Button */
form button {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

form button:hover {
    background-color: #555;
}

/* Labels */
form label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: #bbb;
}

/* Responsive: on small screens, logo on top */
@media (max-width: 768px) {
    .logo-section {
        flex: none;
        margin-bottom: 20px;
    }
}