/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    color: #00549F;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 20px;
}

#loginContainer, #hashContainer, #uploadContainer {
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#loginContainer:hover, #hashContainer:hover, #uploadContainer:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

input[type="text"], input[type="password"], input[type="file"] {
    width: calc(100% - 22px);
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="file"]:focus {
    border-color: #00549F;
}

.file-input {
    margin-bottom: 20px;
}

.file-input label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #00549F;
}

.file-input small {
    display: block;
    font-size: 0.9em;
    color: #666;
}

button {
    background-color: #00549F;
    color: white;
    padding: 12px 24px;
    width: 100%;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #003b73;
}

#status {
    text-align: center;
    font-weight: bold;
    color: #d9534f;
    margin-top: 20px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00549F;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Selector Container */
#selectorContainer {
    text-align: center;
    width: 90%;
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.options {
    margin-top: 20px;
}

.option-button {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #00549F;
    padding: 12px 20px;
    margin: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1em;
}

.option-button:hover {
    background-color: #003b73;
}


