/* General Body Styles */
body {
    background-color: #ffffff;
    /* Lighter background for a modern look */
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Modern font */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    box-sizing: border-box;
    max-height: 100vh;
    padding: 20px;
}

a {
    color: #f43d53;
}

/* Logo */
.logo {
    max-width: 200px;
    margin-bottom: 30px;
    animation: rotateLogo 20s linear infinite;
    /* Example of simple animation */
}

/* Title */
.title {
    font-size: 28px;
    /* Slightly larger font size */
    color: #1a202c;
    /* Darker shade for better readability */
    font-weight: 700;
    /* Medium weight for the title */
    margin-bottom: 18px;
    text-align: center;
}

/* Subtitle */
.subtitle {
    font-size: 18px;
    /* Slightly larger font size */
    color: #f43d53;
    /* Darker shade for better readability */
    font-weight: 600;
    /* Medium weight for the title */
    margin-bottom: 12px;
    text-align: center;
}

/* Input Field */
.input-field {
    width: 100%;
    /* Responsive width */
    max-width: 300px;
    /* Maximum width */
    padding: 8px 15px;
    border: 2px solid #007bff;
    /* Slightly thicker border with primary color */
    border-radius: 5px;
    /* Rounded corners */
    margin-bottom: 20px;
    font-size: 16px;
    /* Larger font size for better readability */
}

/* Submit Button */
.submit-button {
    width: 150px;
    /* Slightly wider button */
    padding: 10px 15px;
    background-color: #ca1c05;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    /* Larger font size */
    transition: background-color 0.3s ease;
    /* Smooth transition for hover effect */
}

.submit-button:hover {
    background-color: #970000;
    /* Darker shade on hover */
}

/* Result */
.result {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    /*background-color: #e2e8f0; */
    /* Light background for the result box */
    width: 100%;
    max-width: 500px;
    /* To match the input field */
    text-align: center;
}

/* Simple Animation Example */
@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 24px;
        /* Adjust font size for smaller devices */
    }

    .submit-button,
    .input-field {
        width: 90%;
        /* More responsive on small devices */
    }
}