body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.verify-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
}

.logo-area {
    margin-bottom: 30px;
}

.logo-area img {
    max-width: 180px;
    height: auto;
}

.verify-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.verify-box h3 {
    margin-top: 0;
    color: #333;
    font-size: 22px;
}

.verify-box p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.code-display {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 5px;
    color: #333;
    border: 2px dashed #ccc;
    user-select: none; /* Kopyalamayı engellemek için */
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* İkon boşluğu */
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.verify-btn {
    width: 100%;
    padding: 12px;
    background-color: #232f3e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.verify-btn:hover {
    background-color: #ff6600;
}

.alert-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-text {
    margin-top: 20px;
    color: #888;
    font-size: 12px;
}