body {
    font-family: Arial, sans-serif;
    background: #1A1A1A;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 500px;
    margin: 60px auto;
    padding: 30px;
    background: linear-gradient(145deg, #333333, #222222);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #FF9F00;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

input[type="text"],
input[type="password"],
.custom-button {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    border: 1px solid #555;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #444444;
    color: #f0f0f0;
}

.custom-button {
    background-color: #FF9F00;
    color: #1A1A1A;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-button:hover {
    background-color: #E68A00;
    transform: translateY(-2px);
}