body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Inter', system-ui;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;

}

.header {
    font-family: 'Irish Grover', system-ui;
    font-size: 28pt;
    color: #f0f0f0;
    position: absolute;
    top: 20px;
    left: 20px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 10px;
}

.header a {
    color: #000;
    text-decoration: none;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.content input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;

}

.content input:focus {
    outline: none;
    border-color: #f36100;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(243, 97, 0, 0.3);
}

.content input::placeholder {
    color: #666;
}

.content button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f36100 50%, #e55a00 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 97, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 97, 0, 0.4);
}

.content button:active {
    transform: translateY(0);
}

.content button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.content button:hover::before {
    left: 100%;
}

.content label {
    width: 100%;
    text-align: left;
    color: #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

.input-group {
    width: 100%;
    margin-bottom: 20px;
}

.footer {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: rgba(240, 240, 240, 0.6);
    font-size: 12px;
    font-family: system-ui, -apple-system, sans-serif;
    text-align: right;
}

.footer a {
    color: rgba(240, 240, 240, 0.6);
    text-decoration: none;
}
