body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
    flex-direction: column;
    text-align: center;
}

.card, .form-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 350px;
}

h1, h2 {
    margin-bottom: 10px;
    color: #333;
}

.subtitle {
    margin-bottom: 20px;
    color: #555;
}

input, select {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button, .btn {
    width: 95%;
    padding: 12px;
    margin-top: 12px;
    border: none;
    border-radius: 8px;
    background: #4facfe;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

button:hover, .btn:hover {
    background: #007bff;
}

.secondary {
    background: gray;
}

.secondary:hover {
    background: black;
}

.link-text {
    margin-top: 10px;
    color: #333;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.job-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
}

.job-card button {
    margin-top: 15px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #4facfe;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.job-card button:hover {
    background-color: #007bff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    background: #4facfe;
    color: white;
    font-weight: bold;
}