﻿body {
    margin: 0;
    font-family: 'Courier Prime', monospace;
    background-color: #1e1e1e;
    color: #c2c1c1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.create-account-container {
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
}

h1 {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #ff9800;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #ff9800;
    font-size: 1.1em;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 95%;
    padding: 10px;
    font-size: 1em;
    background-color: #333;
    border: none;
    border-radius: 5px;
    color: #fff;
    margin-bottom: 10px;
}

    input[type="text"]::placeholder,
    input[type="email"]::placeholder,
    input[type="password"]::placeholder {
        color: #b3b3b3;
    }

button {
    font-family: 'Courier Prime', monospace;
    background-color: transparent;
    color: #fff;
    border: 3px solid #8c5d2e;
    padding: 10px 0;
    width: 100%;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 10px;
    margin-bottom: 10px;
    animation: glow-border 2s linear infinite;
}

@keyframes glow-border {
    0% {
        box-shadow: 0 0 10px #ff9800, 0 0 20px #ff9800;
    }

    50% {
        box-shadow: 0 0 20px #ff9800, 0 0 40px #ff9800;
    }

    100% {
        box-shadow: 0 0 10px #ff9800, 0 0 20px #ff9800;
    }
}

@media (max-width: 768px) {
    .create-account-container {
        padding: 40px;
        max-width: 90%;
    }

    body {
        align-items: flex-start;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"] {
        font-size: 1.2em;
        padding: 8px;
    }

    button {
        font-size: 1.2em;
        padding: 8px;
        position: relative;
        top: 20px;
    }
}
