.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}

#lang-selector {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: white;
}

body {
    font-family: Arial, sans-serif;
    background-color: #4a90e2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

.container {
    text-align: center;
}

.shield-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

h1 {
    color: white;
    font-size: 2em;
    margin-bottom: 40px;
}

.verification-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
}

.verification-box h2 {
    margin-top: 0;
    font-size: 1.2em;
    text-align: left;
}

.verification-box p {
    text-align: left;
    color: #888;
    margin-bottom: 10px;
}

#verification-code {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#verify-btn {
    width: 100%;
    padding: 10px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

#verify-btn:hover {
    background-color: #357abd;
}

.dashed-line {
    border: none;
    border-top: 2px dashed #ccc;
    margin: 30px 0;
}

.message-box h3 {
    text-align: left;
    font-size: 1em;
    margin-top: 0;
}

.message {
    display: none;
    text-align: left;
    color: #888;
    font-size: 0.9em;
}

#error-msg {
    padding-left: 5px;
}

.message.success {
    color: #28a745;
    display: none; /* Use 'none' and toggle with JS */
    align-items: center;
}

.success-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.success-main-text {
    font-weight: bold;
    color: #333;
}

.success-sub-text {
    color: #888;
}

.tick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
    line-height: 20px;
    flex-shrink: 0;
}