/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212; 
    color: #e0e0e0;
}

.login-container {
    width: 350px;
    text-align: center;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .login-container {
        max-width: 90%;
        width: 90%;
    }
}

.form-group {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #a0a0a0;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: #888;
}

.form-group button {
    padding: 10px;
    border: solid 2px transparent;
    border-radius: 4px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

#find-post-form {
    margin-bottom: 80px;
}

#find-post-form h2 {
    background: linear-gradient(to right, #ff799a, #aa65ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

#employer-login-form h2 {
    background: linear-gradient(to right, #36ffda, #88ff67);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

#employer-login-form p {
    margin-bottom: 20px;
    color: #757575;
}

#view-button {
    width: 100px;
    background: linear-gradient(to right, #ff799a, #aa65ff);
    border: 1px solid transparent;
}

#view-button:hover {
    border: solid 1px #efefef;
    background: linear-gradient(to right, #1e1e1e, #1e1e1e);
    color: #efefef;
}

#login-button {
    width: 100px;
    background: linear-gradient(to right, #36ffda, #88ff67);
    border: 1px solid transparent;
}

#login-button:hover {
    border: solid 1px #efefef;
    background: linear-gradient(to right, #1e1e1e, #1e1e1e);
    color: #efefef;
}

.form-links {
    text-align: center;
    margin-top: 1rem;
}

.form-links span {
    color: #757575;
    margin: 0 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.form-links span:hover {
    color: #61dafb;
}

/* If you decide to make the spans look like links without being actual links */
.form-links span {
    text-decoration: underline;
}