/************** General Styles **************/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
}

.container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    width: 300px;
    text-align: center;
}

h2 {
    margin-bottom: 24px;
    color: #fff;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0 16px 0;
    border: none;
    border-radius: 6px;
}

button {
    background-color: #009688;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #00796b;
}

.link-button {
    background: none;
    border: none;
    color: #81d4fa;
    margin-top: 16px;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9em;
}

.link-button:hover {
    color: #b3e5fc;
}

.error-message {
    color: #b00020;
    background: #fff3f3;
    border: 1px solid #b00020;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(176,0,32,0.05);
    transition: all 0.2s;
}

/************** Inference Styles **************/

.stats {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.job-image img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.result {
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #0066cc;
}