* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    border: 2px solid #bc13fe;
    box-shadow: 0 0 15px #bc13fe, inset 0 0 15px #bc13fe;
    background: rgba(10, 10, 10, 0.95);
}

.title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 0 0 10px #bc13fe;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.auth-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.auth-tabs .tab {
    padding: 0.5rem 1.5rem;
    border: 1px solid #bc13fe;
    color: #bc13fe;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-tabs .tab:hover {
    background-color: rgba(188, 19, 254, 0.1);
    box-shadow: 0 0 10px #bc13fe;
}

.auth-tabs .tab.active {
    background-color: #bc13fe;
    color: #0a0a0a;
    box-shadow: 0 0 15px #bc13fe;
}

.auth-forms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: flex;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    color: #bc13fe;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-field {
    background-color: #0a0a0a;
    color: #e0e0e0;
    border: 2px solid #00ff41;
    padding: 0.8rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px #00ff41;
}

.input-field:hover {
    box-shadow: 0 0 15px #00ff41;
}

.input-field:focus {
    outline: none;
    box-shadow: 0 0 20px #00ff41;
}

.input-field option {
    background-color: #0a0a0a;
    color: #e0e0e0;
}

.deploy-btn {
    background-color: #0a0a0a;
    color: #00ff41;
    border: 2px solid #00ff41;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 10px #00ff41;
}

.deploy-btn:hover {
    background-color: #00ff41;
    color: #0a0a0a;
    box-shadow: 0 0 25px #00ff41;
}

.deploy-btn:active {
    transform: scale(0.98);
}

.terminal {
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid #bc13fe;
    background-color: #000;
    min-height: 100px;
    font-size: 0.9rem;
}

.terminal-line {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.terminal-line.success {
    color: #00ff41;
    text-shadow: 0 0 5px #00ff41;
}

.terminal-line.error {
    color: #ff003c;
    text-shadow: 0 0 5px #ff003c;
}
