﻿/* Progress Steps */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
}

.step {
    text-align: center;
    width: 120px;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: bold;
    background: white;
    transition: 0.3s;
}

.step.active .circle {
    border-color: #4CAF50;
    background: #4CAF50;
    color: white;
}

.step.completed .circle {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.line {
    height: 2px;
    width: 60px;
    background: #ccc;
}

.step span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
}

/* Form Styling */
#send-code-box {
    width: 350px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background: #f8f8f8;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

    #send-code-box input {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

    #send-code-box button {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        background: #4CAF50;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
    }

        #send-code-box button:hover {
            background: #45a049;
        }

#send-result, #result {
    margin-top: 10px;
    color: #444;
}
