#new-login-form {
    border: none;
}

#new-login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#company-badge {
    margin-bottom: 20px;
    border: 4px solid #E8B11C;
    padding: 1rem;
    border-radius: 40px;
    color: #000080;
}

#options-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-option {
    display: block;
    width: 100%;
    text-align: center;
    padding: 5px;
    color: #000080;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: large;
}

.login-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid #000080;
    background: white;
    color: #000080;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover {
    background: #000080;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 128, 0.4);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 10px 0;
    color: #7a7878;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #646161;
}

.divider span {
    padding: 0 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alternative-login {
    text-align: center;
}

.alt-login-btn {
    width: 100%;
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    align-items: center;
    gap: 8px;
}

.alt-login-btn:hover {
    border-color: #000080;
    color: #000080;
    background: #f8f9ff;
}

#pin-input-container {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#pin-input {
    font-size: 1.2em;
    letter-spacing: 0.2em;
    text-align: center;
    border: 2px solid #002A5C;
    border-radius: 8px;
    color: #002A5C;
    width: 80%;
    padding: 5px;
    font-size: xx-large;
}

#pin-input::-webkit-outer-spin-button,
#pin-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.new-login-btn {
    background-color: #008cba;
    color: white;
}

#email-display {
    font-size: 1.2rem;
    color: #000080;
}