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

body {
    background-color: black;
    color: #00FF00;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    text-align: center;
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.login-title {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.input-field {
    background-color: #000;
    border: 2px solid #00FF00;
    color: #00FF00;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 18px;
    outline: none;
}

.input-field:focus {
    border-color: #FF0000;
}

.login-btn {
    background-color: #00FF00;
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #FF0000;
}

.login-btn:active {
    background-color: #00FF00;
}

.dashboard-container {
    background-color: #111;
    color: #00FF00;
    text-align: center;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.dashboard-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.dashboard-message {
    font-size: 18px;
    margin-bottom: 40px;
}

.logout-btn {
    background-color: #FF0000;
    color: #FFF;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.logout-btn:hover {
    background-color: #FF4500;
}
