body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #1e1e1e;
    color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-top: 20px;
}

.container {
    max-width: 700px;
    padding: 20px;
    background-color: #2c2c2c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

.logo {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    text-align: center;
}

.error-message {
    color: white;
    text-align: center;
    margin-top: 10px;
}

.file-link {
    text-align: left;
    margin-top: 10px;
    width: 100%;
}

.instructions-container {
    width: 90%;
    background-color: #363636;
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

a, button {
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

a:hover, button:hover {
    background-color: #0056b3;
}

/* Apply same style to Download OpenVPN and Get VPN buttons */
button.green-button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    width: auto; /* Allow button width to adjust automatically */
}

button.green-button:hover {
    background-color: #218838;
}

/* Button Styling for all buttons with class 'green-button' */
.green-button {
    background-color: #28a745; /* Green color */
    color: white;  /* White text */
    border: none;  /* Remove default border */
    padding: 10px 20px; /* Padding inside button */
    font-size: 16px;  /* Font size */
    cursor: pointer;  /* Cursor pointer on hover */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Centered text */
    display: inline-block; /* Display as inline-block for easy positioning */
    margin: 10px auto; /* Center the button with automatic margins */
    width: auto; /* Make button width adjust to the content */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
}

.green-button:hover {
    background-color: #218838; /* Darker green on hover */
    transform: scale(1.05); /* Slightly increase size on hover */
}

.green-button:focus {
    outline: none; /* Remove outline when button is focused */
}

input[type="text"] {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px; /* Add some space between input and button */
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Center the "Get VPN" button below the phone number input */
.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.qr-code {
    margin: 20px 0;
    display: block;
    text-align: center;
}

.qr-code img {
    max-width: 100%;
    height: auto;
}

.instructions-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

ol {
    margin: 0;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Steps 1, 2, and 3 styling */
.steps-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.steps-container .step {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.steps-container .step strong {
    color: #007bff;
}

.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.green-text {
    color: #28a745; /* The same green color as the buttons */
    font-weight: bold; /* Optional: makes the text stand out more */
}
