﻿
/* General page styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* Logo styling */
.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

/* Text styling */
.welcome-text {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

/* Input styling */
.input-box {
    padding: 10px;
    font-size: 1rem;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Optional: Display typed text */
.display-text {
    margin-top: 15px;
    font-style: italic;
    color: #666;
}

/* Button styling */
.validate-button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .validate-button:hover {
        background-color: #005a9e;
    }

/* Validation message styling */
.validation-message {
    margin-top: 15px;
    font-weight: bold;
    color: #d8000c;
}
