* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1e1e2f 0%, #0c0c1d 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo h1 {
    font-size: 28px;
    color: #e10600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.logo p {
    font-size: 14px;
    color: #949498;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #949498;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #e10600;
    box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.2);
}

button {
    width: 100%;
    padding: 12px;
    background: #e10600;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

button:hover {
    background: #ff2e25;
}

.secondary-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.form-toggle {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #949498;
}

.form-toggle a {
    color: #e10600;
    text-decoration: none;
    cursor: pointer;
}

.form-toggle a:hover {
    text-decoration: underline;
}

.message {
    padding: 10px;
    margin: 15px 0;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}

.success {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.hidden {
    display: none;
}

.f1-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='100' height='100'%3E%3Cpath d='M25,25 L75,25 L75,75 L25,75 Z' fill='none' stroke='%23e10600' stroke-width='1'/%3E%3Cpath d='M35,35 L65,35 L65,65 L35,65 Z' fill='none' stroke='%23e10600' stroke-width='0.5'/%3E%3Cpath d='M40,40 L60,40 L60,60 L40,60 Z' fill='none' stroke='%23e10600' stroke-width='0.25'/%3E%3C/svg%3E");
}